18 lines
398 B
C#
18 lines
398 B
C#
using AutoMapper;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using WMS.Web.Core.Dto.BackRecord;
|
|
using WMS.Web.Domain.Entitys;
|
|
|
|
namespace WMS.Web.Domain.Mappers
|
|
{
|
|
public class BackRecordMapper : Profile
|
|
{
|
|
public BackRecordMapper()
|
|
{
|
|
CreateMap<SaveBackRecordDetailsRequest, BackRecordDetails>().ReverseMap();
|
|
}
|
|
}
|
|
}
|