Пример #1
0
 public AccountInformation()
 {
     this._objRole = EnumCollection.eMemberPosition.Member;
     this._strLoginURL = "";
     this._strAccountID = "";
     this._strAccountPassword = "";
     this._objAccountStatus = EnumCollection.eMemberStatus.Open;
 }
Пример #2
0
 public AccountInformation(string text1, string text2, string text3)
 {
     this._objRole = EnumCollection.eMemberPosition.Member;
     this._strLoginURL = "";
     this._strAccountID = "";
     this._strAccountPassword = "";
     this._objAccountStatus = EnumCollection.eMemberStatus.Open;
     this._strLoginURL = text1;
     this._strAccountID = text2;
     this._strAccountPassword = text3;
 }