1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| namespace Yw.CAL.LocalClient
| {
| public class BimfaceFileRelationLabelStd : IBimfaceFileRelationLabelStd
| {
| /// <summary>
| /// 通过 RelationID 获取
| /// </summary>
| public async Task<List<BimfaceFileRelationLabelStdDto>> GetByRelationID(long RelationID)
| {
| return await Task.Factory.StartNew(() =>
| {
| var list = new Yw.Service.BimfaceFileRelationLabel().GetByRelationID(RelationID);
| var vm_list = list?.Select(x => new BimfaceFileRelationLabelStdDto(x)).ToList();
| return vm_list;
| });
| }
| }
| }
|
|