You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
465 B
C#

using AutoMapper;
using Txgy.RBS.DbModel;
using Txgy.RBS.DTO;
using Txgy.RBS.DTO.Reception;
using Txgy.RBS.Framework;
namespace Txgy.RBS.IServices
{
public class AutoMapObject : Profile
{
public AutoMapObject()
{
CreateMap<ResultJson, ResultJsonDTO>().ReverseMap();
//CreateMap<MenueInfo, MenueInfoDTO>().ReverseMap();
//CreateMap<PagingData<MenueInfo>, PagingData<MenueInfoDTO>>();
}
}
}