using AutoMapper;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Yi.Framework.Application.Contracts.#ModelName#.Dtos;
using Yi.Framework.Domain.#ModelName#.Entities;

namespace Yi.Framework.Application.#ModelName#.MapperConfig
{
    public class #EntityName#Profile: Profile
    {
        public #EntityName#Profile()
        {
            CreateMap<#EntityName#GetListInputVo, #EntityName#Entity>();
            CreateMap<#EntityName#CreateInputVo, #EntityName#Entity>();
            CreateMap<#EntityName#UpdateInputVo, #EntityName#Entity>();
            CreateMap<#EntityName#Entity, #EntityName#GetListOutputDto>();
            CreateMap<#EntityName#Entity, #EntityName#GetOutputDto>();
        }
    }
}
