Generator Changes at 11/17/2025 1:17:57 AM +03:30

This commit is contained in:
masoodafar-web
2025-11-17 01:20:07 +03:30
parent 19d32df0d3
commit 12bb40e0ee
18 changed files with 799 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
namespace FrontOffice.BFF.WebApi.Common.Mappings;
public class ProductsServiceProfile : IRegister
{
void IRegister.Register(TypeAdapterConfig config)
{
//config.NewConfig<Source,Destination>()
// .Map(dest => dest.FullName, src => $"{src.Firstname} {src.Lastname}");
}
}