1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| namespace HStation.BLL
| {
| /// <summary>
| ///
| /// </summary>
| public class XhsPhartGraphStd : HStation.CAL.IXhsPhartGraphStd
| {
| private readonly HStation.CAL.IXhsPhartGraphStd _cal = CALCreateHelper.CreateCAL<HStation.CAL.IXhsPhartGraphStd>();
|
|
| /// <summary>
| /// 获取所有
| /// </summary>
| public async Task<List<XhsPhartGraphStdDto>> GetByDiagramID(long DiagramID)
| {
| return await _cal.GetByDiagramID(DiagramID);
| }
|
| }
| }
|
|