| | |
| | | { |
| | | protected override string Prefix |
| | | { |
| | | get { return $"{HStation.BLL.Assets.ConfigHelper.HttpUrl}/AssetsHydrantMain"; } |
| | | get { return $"{HStation.BLL.Assets.ConfigHelper.HttpUrl}/Assets/Hydrant/Main"; } |
| | | } |
| | | |
| | | public Task<List<AssetsHydrantMainDto>> GetBySeriesID(long ID) |
| | | public async Task<List<AssetsHydrantMainDto>> GetBySeriesID(long ID) |
| | | { |
| | | throw new NotImplementedException(); |
| | | var paras = new List<(string Name, object Value)>() |
| | | { |
| | | ("SeriesID",ID) |
| | | }; |
| | | return await GetUrl("GetBySeriesID@V1.0").Get<List<AssetsHydrantMainDto>>(paras); |
| | | } |
| | | |
| | | /// <summary> |