Added code to store the xml representation of the approved version of the procedure in the database for future support of temp mods, etc.
Added code to support handling of Floating Foldouts, implement inclusion of audit reocords and converting invalid referenced objects and invalid transitions to text during import/export operations Added code to support storage of email addresses and cell phone numbers of users which are used as part of the batch refresh process.
This commit is contained in:
@@ -53,6 +53,7 @@ namespace VEPROMS
|
||||
internal class SimpleUser
|
||||
{
|
||||
private User _MyUser;
|
||||
private UserConfig _MyUC;
|
||||
[Browsable(false)]
|
||||
public User MyUser
|
||||
{
|
||||
@@ -61,6 +62,7 @@ namespace VEPROMS
|
||||
public SimpleUser(User myUser)
|
||||
{
|
||||
_MyUser = myUser;
|
||||
_MyUC = new UserConfig(myUser.Config);
|
||||
}
|
||||
public string CourtesyTitle
|
||||
{
|
||||
@@ -92,6 +94,24 @@ namespace VEPROMS
|
||||
get { return _MyUser.PhoneNumber; }
|
||||
set { _MyUser.PhoneNumber = value; }
|
||||
}
|
||||
public string Email
|
||||
{
|
||||
get { return _MyUC.User_UserEmail; }
|
||||
set
|
||||
{
|
||||
_MyUC.User_UserEmail = value;
|
||||
_MyUser.Config = _MyUC.ToString();
|
||||
}
|
||||
}
|
||||
public string CellPhone
|
||||
{
|
||||
get { return _MyUC.User_CellPhone; }
|
||||
set
|
||||
{
|
||||
_MyUC.User_CellPhone = value;
|
||||
_MyUser.Config = _MyUC.ToString();
|
||||
}
|
||||
}
|
||||
public string UserID
|
||||
{
|
||||
get { return _MyUser.UserID; }
|
||||
|
Reference in New Issue
Block a user