Beispiel #1
0
 public People()
 {
     firstName = String.Empty;
     lastName = String.Empty;
     id = 0;
     title = Title.Unknown;
     work = null;
     earnMoney = null;
     report = null;
 }
Beispiel #2
0
 public People(string fName, string lName, int id,
     Title title, iWork work, 
     iEarnMoney earnMoney,
     iFinanceReport report)
 {
     this.firstName = fName;
     this.lastName = lName;
     this.id = id;
     this.title = title;
     this.work = work;
     this.earnMoney = earnMoney;
     this.report = report;
 }
Beispiel #3
0
 public void SetEarnMoneyBehavior(iEarnMoney earnMoney)
 {
     this.earnMoney = earnMoney;
 }