12345678910111213141516171819202122 |
- using AutoMapper;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Gateway.Payment
- {
- public class AutoMapperProfile : Profile
- {
- public AutoMapperProfile()
- {
- ShouldMapField = fi => false;
- CreateMap<Gateway.Payment.Shared.PaymentOrderDto, Gateway.Payment.Shared.PaymentOrder>().ReverseMap();
-
-
-
-
-
- }
- }
- }
|