V1.2
This commit is contained in:
@@ -2,11 +2,6 @@
|
||||
using CapMachine.Model;
|
||||
using CapMachine.Wpf.Dtos;
|
||||
using CapMachine.Wpf.Models;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CapMachine.Wpf.MapperProfile
|
||||
{
|
||||
|
||||
15
CapMachine.Wpf/MapperProfile/QuickMeterStepProfile.cs
Normal file
15
CapMachine.Wpf/MapperProfile/QuickMeterStepProfile.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using AutoMapper;
|
||||
using CapMachine.Model;
|
||||
using CapMachine.Model.QuickMeterConfig;
|
||||
using CapMachine.Wpf.Dtos;
|
||||
|
||||
namespace CapMachine.Wpf.MapperProfile
|
||||
{
|
||||
public class QuickMeterStepProfile : Profile
|
||||
{
|
||||
public QuickMeterStepProfile()
|
||||
{
|
||||
CreateMap<QuickMeterStep, QuickMeterStepDto>().ReverseMap();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user