zhengyuxuan
2025-03-31 d7399b083de823860a56b68c79f8e36603fb4ea3
LifePayment/LifePayment.Application/LifePaymentServicesApplicationModuleAutoMapperProfile.cs
@@ -1,6 +1,7 @@
using AutoMapper;
using LifePayment.Application.Contracts;
using LifePayment.Domain;
using LifePayment.Domain.Models;
namespace LifePayment.Application
{
@@ -8,7 +9,14 @@
    {
        public LifePaymentServicesApplicationModuleAutoMapperProfile()
        {
            #region lifepay
            CreateMap<CreateLifePayOrderInput, LifePayOrder>(MemberList.None);
            CreateMap<CreateEditPayChannelsInput, LifePayChannles>(MemberList.None);
            CreateMap<CreateBackClientUserInput, CreateAccountInput>(MemberList.None);
            #endregion
        }
    }
}