using CMSMicroservice.Application.UserWalletHistoryCQ.Queries.GetAllUserWalletHistoryByFilter; using CMSMicroservice.Application.UserWalletHistoryCQ.Queries.GetUserWalletHistory; namespace CMSMicroservice.Application.Common.Mappings; public class UserWalletHistoryProfile : IRegister { void IRegister.Register(TypeAdapterConfig config) { config.NewConfig() .Map(dest => dest.CreatedAt, src => src.Created); config.NewConfig() .Map(dest => dest.CreatedAt, src => src.Created); } }