using AutoMapper; using LifePayment.Application.Contracts; using LifePayment.Domain; using LifePayment.Domain.Models; namespace LifePayment.Application { public class LifePaymentServicesApplicationModuleAutoMapperProfile : Profile { public LifePaymentServicesApplicationModuleAutoMapperProfile() { #region lifepay CreateMap(MemberList.None); CreateMap(MemberList.None); #endregion } } }