21 lines
473 B
C#
21 lines
473 B
C#
using AutoMapper;
|
|
using FATrace.Model;
|
|
using FATrace.WPLApp.ModelDto;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FATrace.WPLApp.MapperProfile
|
|
{
|
|
public class RawProUseProfile : Profile
|
|
{
|
|
public RawProUseProfile()
|
|
{
|
|
CreateMap<RawProUse, RawProUserCsvDto>().ReverseMap();
|
|
CreateMap<RawProUse, RawProUseDto>().ReverseMap();
|
|
}
|
|
}
|
|
}
|