1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| namespace HStation.BLL
| {
| public partial class XhsValveMainPhartMappingExtensionsStd
| {
|
| //Dto to Vmo
| private static Vmo.XhsValveMainPhartMappingExtensionsStd Dto2Vmo(Dto.XhsValveMainPhartMappingExtensionsStdDto dto)
| {
| if (dto == null)
| return default;
| var vmo = dto.Adapt<Dto.XhsValveMainPhartMappingExtensionsStdDto, Vmo.XhsValveMainPhartMappingExtensionsStd>();
| return vmo;
| }
|
| }
| }
|
|