From 4c74f20347326709dfef670bb31b18d9e146d366 Mon Sep 17 00:00:00 2001 From: enisn Date: Tue, 28 Dec 2021 10:46:19 +0300 Subject: [PATCH] Add missing mappings --- .../PaymentServiceApplicationAutoMapperProfile.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/services/payment/src/EShopOnAbp.PaymentService.Application/PaymentServiceApplicationAutoMapperProfile.cs b/services/payment/src/EShopOnAbp.PaymentService.Application/PaymentServiceApplicationAutoMapperProfile.cs index 0867269d..44fbd070 100644 --- a/services/payment/src/EShopOnAbp.PaymentService.Application/PaymentServiceApplicationAutoMapperProfile.cs +++ b/services/payment/src/EShopOnAbp.PaymentService.Application/PaymentServiceApplicationAutoMapperProfile.cs @@ -1,4 +1,6 @@ using AutoMapper; +using EShopOnAbp.PaymentService.PaymentRequests; +using Volo.Abp.AutoMapper; namespace EShopOnAbp.PaymentService { @@ -6,6 +8,9 @@ namespace EShopOnAbp.PaymentService { public PaymentServiceApplicationAutoMapperProfile() { + CreateMap(); + CreateMap(); + /* You can configure your AutoMapper mapping configuration here. * Alternatively, you can split your mapping configurations * into multiple profile classes for a better organization. */