Mapper NETMAUI-ba
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
using AutoMapper;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WorkFlowCheck.Common.DTO;
|
||||
using WorkFlowCheck.MAUI.DataLayer.Entities;
|
||||
|
||||
namespace WorkFlowCheck.MAUI.Mapper
|
||||
{
|
||||
public class MapperProfile:Profile
|
||||
{
|
||||
public MapperProfile()
|
||||
{
|
||||
CreateMap<CheckPoint, CheckPointDTO>();
|
||||
CreateMap<CheckPointDTO, CheckPoint>();
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user