Added procedure set rev property to docversion properties dialog box

This commit is contained in:
Rich
2014-01-08 20:12:06 +00:00
parent 4f9a67464b
commit 1b09d64a7f
3 changed files with 1851 additions and 1799 deletions

View File

@@ -107,6 +107,21 @@ namespace VEPROMS.CSLA.Library
set { if (_DocVersion != null) _DocVersion.Name = value; }
}
[Category("General")]
[DisplayName("Procedure Set Revision")]
[Description("Westinghouse Owners Group Revision")]
public string ProcedureSetRev
{
get
{
return _Xp["ProcedureSet", "Revision"];
}
set
{
_Xp["ProcedureSet", "Revision"] = value;
OnPropertyChanged("ProcedureSet_Revision");
}
}
[Category("General")]
//PROPGRID: Hide Title
[Browsable(false)]
[DisplayName("Title")]