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<CreateLifePayOrderInput, LifePayOrder>(MemberList.None);
|
|
CreateMap<CreateEditPayChannelsInput, LifePayChannles>(MemberList.None);
|
#endregion
|
}
|
}
|
}
|