23 lines
407 B
C#
23 lines
407 B
C#
using BS.Shared.DataContracts;
|
|
using BS.Shared.DataContracts.Compact;
|
|
using BS.Shared.DataContracts.Invoicing;
|
|
using System;
|
|
using System.Runtime.Serialization;
|
|
using System.Windows.Media;
|
|
|
|
namespace BeWoPlanerMobil.Util
|
|
{
|
|
|
|
public class DcToMokMapper
|
|
{
|
|
public static MokMandator CreateMandator(MandatorDC dc)
|
|
{
|
|
return new MokMandator
|
|
{
|
|
Settings = dc.Settings
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
} |