C2018-039: Upgrade – User Control of Format
This commit is contained in:
@@ -152,6 +152,16 @@ namespace VEPROMS.CSLA.Library
|
||||
return _Data;
|
||||
}
|
||||
}
|
||||
private string _Config = string.Empty;
|
||||
public string Config
|
||||
{
|
||||
[System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
|
||||
get
|
||||
{
|
||||
CanReadProperty("Config", true);
|
||||
return _Config;
|
||||
}
|
||||
}
|
||||
private string _GenMac = string.Empty;
|
||||
public string GenMac
|
||||
{
|
||||
@@ -417,6 +427,7 @@ namespace VEPROMS.CSLA.Library
|
||||
_Name = tmp.Name;
|
||||
_Description = tmp.Description;
|
||||
_Data = tmp.Data;
|
||||
_Config = tmp.Config;
|
||||
_GenMac = tmp.GenMac;
|
||||
_DTS = tmp.DTS;
|
||||
_UserID = tmp.UserID;
|
||||
@@ -483,6 +494,7 @@ namespace VEPROMS.CSLA.Library
|
||||
_Name = dr.GetString("Name");
|
||||
_Description = dr.GetString("Description");
|
||||
_Data = dr.GetString("Data");
|
||||
_Config = dr.GetString("Config");
|
||||
_GenMac = dr.GetString("GenMac");
|
||||
_DTS = dr.GetDateTime("DTS");
|
||||
_UserID = dr.GetString("UserID");
|
||||
|
Reference in New Issue
Block a user