18 lines
360 B
C#
18 lines
360 B
C#
using AutoMapper;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using WMS.Web.Core.Dto.TakeStock;
|
|
using WMS.Web.Domain.Entitys;
|
|
|
|
namespace WMS.Web.Domain.Mappers
|
|
{
|
|
public class TakeStockMapper:Profile
|
|
{
|
|
public TakeStockMapper()
|
|
{
|
|
CreateMap<SaveTakeStockRequest, TakeStockDetails>();
|
|
}
|
|
}
|
|
}
|