AIHITService

This commit is contained in:
Mikhail Kuznetsov
2023-08-23 16:57:38 +10:00
parent 906982d08d
commit f3914c07a4
10 changed files with 105 additions and 91 deletions

View File

@@ -1,4 +1,5 @@
using AutoMapper;
using PARR.AIHIT.Models;
using PARR.DAL.Models;
using PARR.DAL.Models.AIHIT;
using PARR.DAL.Models.V1;
@@ -35,6 +36,10 @@ namespace PARR.AIHIT.MappingProfiles
// .ForMember(d => d.OS, o => o.MapFrom(s => s.OS))
// .ForMember(d => d.DB, o => o.MapFrom(s => s.DB))
// .ForMember(d => d.APP, o => o.MapFrom(s => s.APP));
CreateMap<EK, RawDataEK>();
}
}
}