2025-09-27 08:46:36 +03:30
|
|
|
namespace CMSMicroservice.Application.Common.Mappings;
|
|
|
|
|
|
|
|
|
|
public class UserOrderProfile : IRegister
|
|
|
|
|
{
|
|
|
|
|
void IRegister.Register(TypeAdapterConfig config)
|
|
|
|
|
{
|
2025-11-24 22:55:14 +03:30
|
|
|
// config.NewConfig<Source,Destination>()
|
|
|
|
|
// .Map(dest => dest.FullName, src => $"{src.Firstname} {src.Lastname}");
|
2025-09-27 08:46:36 +03:30
|
|
|
}
|
|
|
|
|
}
|