Files
egtbeamwall/EgtBEAMWALL.DataLayer/DbManager.cs
T
2021-04-03 16:31:59 +02:00

37 lines
1.2 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace EgtBEAMWALL.DataLayer
{
public class DbManager
{
#region Public Fields
public static DbManager obj = new DbManager();
public Controllers.BTLPartController BtlPartCtr = new Controllers.BTLPartController();
public Controllers.LogMachineController LogMacCtr = new Controllers.LogMachineController();
public Controllers.LogSupportController LogSupCtr = new Controllers.LogSupportController();
public Controllers.MachGroupController MachGroupCtr = new Controllers.MachGroupController();
public Controllers.PartController PartCtr = new Controllers.PartController();
public Controllers.ProdController ProdCtr = new Controllers.ProdController();
public Controllers.ProjController ProjCtr = new Controllers.ProjController();
#endregion Public Fields
#region Public Constructors
public DbManager()
{
}
#endregion Public Constructors
#region Public Properties
public static bool AdvDataModel { get; set; } = false;
#endregion Public Properties
}
}