Ejemplo n.º 1
0
 public NegativeCashBalanceException(TransactionContext.Investor investor) : base(investor.ToString())
 {
     this.Investor = investor;
 }
Ejemplo n.º 2
0
 public NegativeCashBalanceException(TransactionContext.Investor investor, string fund, float cashBalance) : this(investor)
 {
     this.Fund        = fund;
     this.CashBalance = cashBalance;
 }
Ejemplo n.º 3
0
 public NegativeShareBalanceException(TransactionContext.Investor investor, string fund, float shareBalance) : this(investor)
 {
     this.Fund         = fund;
     this.ShareBalance = shareBalance;
 }