duheng
2024-08-21 6c88a90d2330a27c0052a22538f6ebd6200faae7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using HStation.CAL;
 
namespace HStation.BLL
{
    /// <summary>
    ///
    /// </summary>
    public class XhsProjectStd : IXhsProjectStd
    {
        private readonly HStation.CAL.IXhsProjectStd _cal = CALCreateHelper.CreateCAL<HStation.CAL.IXhsProjectStd>();
 
        public Task<List<XhsProjectStdDto>> GetAll()
        {
            return _cal.GetAll();
        }
 
        public Task<XhsProjectStdDto> GetByID(long ID)
        {
            return _cal.GetByID(ID);
        }
    }
}