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