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:
Rich 2015-02-05 03:51:18 +00:00
parent d6544c0025
commit af0e36b6c6

View File

@ -93,6 +93,38 @@ namespace VEPROMS.CSLA.Library
_Xp["user", "UserPhone2"] = value;
OnPropertyChanged("User_UserPhone2");
}
}
[Category("User")]
[DisplayName("User Email")]
[RefreshProperties(RefreshProperties.All)]
[Description("User Email")]
public string User_UserEmail
{
get
{
return _Xp["user", "UserEmail"];
}
set
{
_Xp["user", "UserEmail"] = value;
OnPropertyChanged("User_UserEmail");
}
}
[Category("User")]
[DisplayName("User Cell Phone")]
[RefreshProperties(RefreshProperties.All)]
[Description("User Cell Phone")]
public string User_CellPhone
{
get
{
return _Xp["user", "UserCellPhone"];
}
set
{
_Xp["user", "UserCellPhone"] = value;
OnPropertyChanged("User_UserCellPhone");
}
}
#endregion
}