Test.TstTime -> TestTime, Config.Ent.Enums + Events.Ent.Enums + Users.Ent.Enums -> Common.Enums, IRegulValve -> IRegValve, etc.

This commit is contained in:
Milan Hanajik
2021-10-01 09:58:06 +02:00
parent 5c55b2540a
commit 698e2dd6c4
536 changed files with 1795 additions and 1364 deletions
@@ -7,6 +7,7 @@ using System.IO;
using System.Windows.Forms;
using log4net;
using NHibernate;
using Common;
using Config.Entities;
using Results.Forms;
using TBF.BenchControl;
@@ -68,7 +69,7 @@ namespace TBF.UI.Bench.Components
selectComponentTypeDlg = new SelectComponentClassDlg();
/// SharedDlgButtons configuration
sharedButtons.RequiredGroupMembership = new Users.Entities.GID[] { Users.Entities.GID.Metrologists };
sharedButtons.RequiredGroupMembership = new Common.GID[] { Common.GID.Metrologists };
sharedButtons.OptionalButtons = SharedButtons.Buttons.Add |
SharedButtons.Buttons.Remove |
@@ -119,7 +120,7 @@ namespace TBF.UI.Bench.Components
sharedButtons.DisableButtons(SharedButtons.Buttons.Remove | SharedButtons.Buttons.Edit);
session = TBF.DB.CreateSession(Users.Entities.DBKind.Config);
session = TBF.DB.CreateSession(Common.DBKind.Config);
cmpntEntities = session.QueryOver<Component>()
.OrderBy(x => x.ItemNr).Asc
.List<Component>();