Пример #1
0
 public Money(TypeMoney typeMoney, int totalSum, string currency, string typeTicket)
     : base(currency)
 {
     this.typeMoney = typeMoney;
     TotalSum       = totalSum;
     TypeTicket     = typeTicket;
 }
Пример #2
0
 public Money(TypeMoney typeMoney, int totalSum, string currency, string bankName = null, int accountNumber = 0)
     : base(currency)
 {
     this.typeMoney = typeMoney;
     BankName       = bankName;
     TotalSum       = totalSum;
     AccountNumber  = accountNumber;
 }