You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
531 B

1 year ago
using WinIn.FasterZ.AgGridReport.Dtos;
using WinIn.FasterZ.AgGridReport.Web.Pages.WinIn.FasterZ.AgGridReport.MapperProc.ViewModels;
using AutoMapper;
namespace WinIn.FasterZ.AgGridReport.Web;
public class AgGridReportWebAutoMapperProfile : Profile
{
public AgGridReportWebAutoMapperProfile()
{
//Define your AutoMapper configuration here for the Web project.
CreateMap<MapperProcDto, CreateEditMapperProcViewModel>();
CreateMap<CreateEditMapperProcViewModel, CreateUpdateMapperProcDto>();
}
}