BLL/HStation.BLL.Assets.Core/04-bll/01-PumpProdcuct/01-PumpSeries/PumpSeries.cs
@@ -41,13 +41,13 @@ /// <summary> /// /// </summary> public async Task<List<PumpSeriesDto>> GetByIds(List<long> Ids) public async Task<List<Vmo.PumpSeries>> GetByIds(List<long> Ids) { var DtoList = await _cal.GetByIds(Ids); var mapper = new MapperConfiguration(cfg => cfg.CreateMap<Dto.Assets.PumpSeriesDto, Vmo.PumpSeries>() ).CreateMapper(); var vmoList = mapper.Map<List<Dto.Assets.PumpSeriesDto>, List<Vmo.PumpSeries>>(DtoList); return DtoList; return vmoList; } #endregion Query