21 lines
490 B
C#
21 lines
490 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using AutoMapper;
|
|
using APT.BaseData.Domain.Entities;
|
|
using APT.Infrastructure.Core;
|
|
using APT.BaseData.Domain.ApiModel;
|
|
|
|
namespace APT.PF.WebApi.Models
|
|
{
|
|
public class MappingProfile: Profile
|
|
{
|
|
public MappingProfile()
|
|
{
|
|
CreateMap<T_PF_CODE_RULE_SERIAL, T_PF_CODE_RULE_SERIAL_LOG>();
|
|
CreateMap<T_PF_FLOW_SCHEME, FlowMode>();
|
|
}
|
|
}
|
|
}
|