Example #1
0
 public AirlinerInsurance(InsuranceType insType, InsuranceScope insScope, PaymentTerms paymentTerms, int insAmount)
 {
     this.Deductible = 0;
     this.TermLength = 0;
     this.CancellationFee = 0;
     this.InsuredAmount = insAmount;
 }
Example #2
0
 public AirlinerInsurance(InsuranceType insType, InsuranceScope insScope, PaymentTerms paymentTerms, int insAmount)
 {
     this.Deductible      = 0;
     this.TermLength      = 0;
     this.CancellationFee = 0;
     this.InsuredAmount   = insAmount;
 }
 public AirlineInsurance(InsuranceType insType, InsuranceScope insScope, PaymentTerms paymentTerms, int insAmount)
 {
     Deductible = 0;
     TermLength = 0;
     CancellationFee = 0;
     InsuredAmount = insAmount;
     InsType = insType;
     InsScope = insScope;
     InsTerms = paymentTerms;
 }