Ejemplo n.º 1
0
 public DeptModel(decimal amount, decimal capital, decimal interest, decimal interestPenalty, InterestPenaltyType typePenalty, decimal feesAndCommissions)
 {
     Amount                        = amount;
     Capital                       = capital;
     Interest                      = interest;
     InterestPenalty               = interestPenalty;
     TypePenalty                   = typePenalty;
     FeesAndCommissions            = feesAndCommissions;
     DateLastUpdateInterestPenalty = DateTime.Now;
 }
Ejemplo n.º 2
0
 public void SetDetails(decimal interest, decimal interestPenalty, InterestPenaltyType typePenalty)
 {
     Interest        = interest;
     InterestPenalty = interestPenalty;
     TypePenalty     = typePenalty;
 }