C2020-038: When deleting a procedure, add a prompt so that user has to enter a reason that is saved to database
This commit is contained in:
@@ -259,6 +259,23 @@ namespace VEPROMS.CSLA.Library
|
||||
return s;
|
||||
}
|
||||
#endregion
|
||||
#region DelProcReason
|
||||
[Category("General")]
|
||||
[DisplayName("DelProcReason")]
|
||||
[RefreshProperties(RefreshProperties.All)]
|
||||
[Description("Delete Procedure Reason")]
|
||||
public string General_DelProcReason // C2020-038: reason was added when procedure was deleted
|
||||
{
|
||||
get
|
||||
{
|
||||
return _Xp["General", "DelProcReason"];
|
||||
}
|
||||
set
|
||||
{
|
||||
_Xp["General", "DelProcReason"] = value;
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
#region FormatCategory
|
||||
//[TypeConverter(typeof(EnumDescConverter))]
|
||||
//public enum FormatColumns : int
|
||||
|
Reference in New Issue
Block a user