コード例 #1
0
 public InvSystem(string name, float investedAmount, int totalTerms, Currency currency, RatesTable ratesTable)
 {
     this._name           = name;
     this._investedAmount = investedAmount;
     this._totalTerms     = totalTerms;
     this._currency       = currency;
     this._ratesTable     = ratesTable;
 }
コード例 #2
0
 private InvSystem()
 {
     _name           = "";
     _investedAmount = 0;
     _totalTerms     = 0;
     _ratesTable     = new RatesTable();
     _currency       = new Currency();
 }
コード例 #3
0
 public RateTableBuilder()
 {
     _ratesTable = new RatesTable();
 }
コード例 #4
0
 public AgreedRate(string name, float investedAmount, int totalTerms, Currency currency, RatesTable ratesTable) : base(name, investedAmount, totalTerms, currency, ratesTable)
 {
 }
コード例 #5
0
ファイル: Current.cs プロジェクト: estebgonza29/Proy1_Diseno
 public Current(string name, float investedAmount, int totalTerms, Currency currency, RatesTable ratesTable) : base(name, investedAmount, totalTerms, currency, ratesTable)
 {
     _minimumAmount    = 25000;
     _totalProductions = 0;
 }