blob: 1b53b2b8b0b68196bbed2994c6b4e17a9223f729 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using Tango.DAL.Remote.DB;
namespace Tango.DAL.Observables
{
[EntityFieldName("SYNC_CONFIGURATIONS")]
public partial class SyncConfiguration : ObservableEntity<SYNC_CONFIGURATIONS>
{
/// <summary>
/// Initializes a new instance of the <see cref="SyncConfiguration" /> class.
/// </summary>
public SyncConfiguration() : base()
{
Init();
}
/// <summary>
/// Initializes a new instance of the <see cref="SyncConfiguration" /> class.
/// </summary>
/// <param name="entity">The entity.</param>
public SyncConfiguration(SYNC_CONFIGURATIONS entity) : base(entity)
{
Init();
MapEntityToObservable(entity, this);
}
/// <summary>
/// Initialize complex types.
/// </summary>
private void Init()
{
}
}
}
|