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

@ -62,23 +62,23 @@ namespace VEPROMS.CSLA.Library
OnPropertyChanged("User_UserLoc2");
}
}
[Category("User")]
[DisplayName("User Phone1")]
[RefreshProperties(RefreshProperties.All)]
[Description("User Phone1")]
public string User_UserPhone1
{
get
{
return _Xp["user", "UserPhone1"];
}
set
{
_Xp["user", "UserPhone1"] = value;
OnPropertyChanged("User_UserPhone1");
}
}
[Category("User")]
[Category("User")]
[DisplayName("User Phone1")]
[RefreshProperties(RefreshProperties.All)]
[Description("User Phone1")]
public string User_UserPhone1
{
get
{
return _Xp["user", "UserPhone1"];
}
set
{
_Xp["user", "UserPhone1"] = value;
OnPropertyChanged("User_UserPhone1");
}
}
[Category("User")]
[DisplayName("User Phone2")]
[RefreshProperties(RefreshProperties.All)]
[Description("User Phone2")]
@ -94,6 +94,38 @@ namespace VEPROMS.CSLA.Library
OnPropertyChanged("User_UserPhone2");
}
}
#endregion
[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
}
}