public FixedDeposit(string name, double principle, int year, IFestival festival)
 {
     _name      = name;
     _principle = principle;
     _year      = year;
     _festival  = festival;
 }
Пример #2
0
 public FixedDeposit(int accountNumber, String name, double principle,
                     int years, IFestival festival)
 {
     this.accountNumber = accountNumber;
     this.name          = name;
     this.principle     = principle;
     this.years         = years;
     this.festival      = festival;
 }