1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| namespace Yw.BLL
| {
| /// <summary>
| ///
| /// </summary>
| public class BimfaceFileRelationLabelStd : Yw.CAL.IBimfaceFileRelationLabelStd
| {
| private readonly Yw.CAL.IBimfaceFileRelationLabelStd _cal = CALCreateHelper.CreateCAL<Yw.CAL.IBimfaceFileRelationLabelStd>();
|
| public Task<List<BimfaceFileRelationLabelStdDto>> GetByRelationID(long RelationID)
| {
| return _cal.GetByRelationID(RelationID);
| }
| }
| }
|
|