| | |
| | | using LifePayment.Application.Contracts; |
| | | using LifePayment.Application.Contracts.Sync; |
| | | using LifePayment.Domain; |
| | | using LifePayment.Domain.LifePay; |
| | | using LifePayment.Domain.Models; |
| | | using LifePayment.Domain.Shared; |
| | | |
| | | namespace LifePayment.Application |
| | | { |
| | |
| | | CreateMap<SyncLifePayChannlesRake, SyncLifePayChannlesRake>(MemberList.None); |
| | | CreateMap<SyncLifePayConsumption, SyncLifePayConsumption>(MemberList.None); |
| | | CreateMap<SyncLifePayExpensesReceipts, SyncLifePayExpensesReceipts>(MemberList.None); |
| | | |
| | | |
| | | CreateMap<LifePayPromoter, PromoterDto>(MemberList.None); |
| | | CreateMap<CreateOrUpdatePromoterInput, LifePayPromoter>(MemberList.None); |
| | | |
| | | CreateMap<LifePayChannelConsultation, ChannelConsultationDto>(MemberList.None); |
| | | CreateMap<CreateChannelConsultationInput, LifePayChannelConsultation>(MemberList.None); |
| | | |
| | | CreateMap<CreateChannelConsultationFollowupInput, LifePayChannelConsultationFollowup>(MemberList.None); |
| | | |
| | | CreateMap<LogFrontInput, LogFrontRecord>(MemberList.None); |
| | | } |
| | | } |
| | | } |