aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio_v2/Tango.BLL/Mappers/MachineConfigurationToMachineConfigurationModelMapper.cs
blob: b2d3aaddbd4a900aae57aa99ac5f14a0681acd10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Collections.Generic;
using System.Text;
using Tango.BLL.Objects;
using Tango.DAL.Models;

namespace Tango.BLL.Mappers
{
    public class MachineConfigurationToMachineConfigurationModelMapper : MapperBase<MachineConfiguration,MachineConfigurationModel>
    {
        public override void Map(MachineConfiguration source, MachineConfigurationModel target)
        {
            
        }

        public override void Map(MachineConfigurationModel source, MachineConfiguration target)
        {
            
        }
    }
}