From ac34ffe211bfa0d811f33a9e6141c0da97c55abe Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Thu, 14 Dec 2017 15:35:39 +0200 Subject: Implemented DAL Observables auto enumerations generation. --- Software/Visual_Studio/Tango.DAL.Local/DB/LocalADO.edmx | 7 +++++-- Software/Visual_Studio/Tango.DAL.Local/DB/LocalADO.edmx.diagram | 2 +- Software/Visual_Studio/Tango.DAL.Local/DB/PERMISSION.cs | 1 + Software/Visual_Studio/Tango.DAL.Local/DB/ROLE.cs | 2 +- 4 files changed, 8 insertions(+), 4 deletions(-) (limited to 'Software/Visual_Studio/Tango.DAL.Local') diff --git a/Software/Visual_Studio/Tango.DAL.Local/DB/LocalADO.edmx b/Software/Visual_Studio/Tango.DAL.Local/DB/LocalADO.edmx index 801937352..83482b978 100644 --- a/Software/Visual_Studio/Tango.DAL.Local/DB/LocalADO.edmx +++ b/Software/Visual_Studio/Tango.DAL.Local/DB/LocalADO.edmx @@ -370,6 +370,7 @@ + @@ -408,7 +409,7 @@ - + @@ -909,6 +910,7 @@ + @@ -947,7 +949,7 @@ - + @@ -1396,6 +1398,7 @@ + diff --git a/Software/Visual_Studio/Tango.DAL.Local/DB/LocalADO.edmx.diagram b/Software/Visual_Studio/Tango.DAL.Local/DB/LocalADO.edmx.diagram index ceebf2b45..e96c0836c 100644 --- a/Software/Visual_Studio/Tango.DAL.Local/DB/LocalADO.edmx.diagram +++ b/Software/Visual_Studio/Tango.DAL.Local/DB/LocalADO.edmx.diagram @@ -39,7 +39,7 @@ - + diff --git a/Software/Visual_Studio/Tango.DAL.Local/DB/PERMISSION.cs b/Software/Visual_Studio/Tango.DAL.Local/DB/PERMISSION.cs index b154557a3..6052bccc0 100644 --- a/Software/Visual_Studio/Tango.DAL.Local/DB/PERMISSION.cs +++ b/Software/Visual_Studio/Tango.DAL.Local/DB/PERMISSION.cs @@ -18,6 +18,7 @@ namespace Tango.DAL.Local.DB public string GUID { get; set; } public System.DateTime LAST_UPDATED { get; set; } public bool DELETED { get; set; } + public long CODE { get; set; } public string NAME { get; set; } public string DESCRIPTION { get; set; } } diff --git a/Software/Visual_Studio/Tango.DAL.Local/DB/ROLE.cs b/Software/Visual_Studio/Tango.DAL.Local/DB/ROLE.cs index cb5f6770c..66f453b4e 100644 --- a/Software/Visual_Studio/Tango.DAL.Local/DB/ROLE.cs +++ b/Software/Visual_Studio/Tango.DAL.Local/DB/ROLE.cs @@ -18,7 +18,7 @@ namespace Tango.DAL.Local.DB public string GUID { get; set; } public System.DateTime LAST_UPDATED { get; set; } public bool DELETED { get; set; } - public int CODE { get; set; } + public long CODE { get; set; } public string NAME { get; set; } public string DESCRIPTION { get; set; } } -- cgit v1.3.1