Files
FATrace/FATrace.WPLApp/MapperProfile/RawProUseProfile.cs
2025-11-26 16:46:48 +08:00

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();
}
}
}