Beispiel #1
0
 public Executive(string firstname, string lastname, DateTime DOB, float currPay, string ssn, int numbOfOpts = 10000, ExecTitle title = ExecTitle.VP)
     : base(firstname, lastname, DOB, currPay, ssn, numbOfOpts)
 {
     // Title defined by the Executive class.
     Title       = title;
     empBenefits = new GoldBenefitPackage();
 }
Beispiel #2
0
 public Executive() : base()
 {
     empBenefits  = new GoldBenefitPackage();
     StockOptions = 10000;
 }