コード例 #1
0
 public void AddMainInfo(string Name, string Surname)
 {
     this.newPerson = new BankSystem.Person(Name, Surname);
 }
コード例 #2
0
 public BankSystem.Person ReturnPersonInfo()
 {
     BankSystem.Person ourPerson = this.newPerson;
     Reset();
     return(ourPerson);
 }
コード例 #3
0
 public void Reset()
 {
     this.newPerson = new BankSystem.Person();
 }