TheAirline.Models.Airlines.AirlineInsurance.AirlineInsurance C# (CSharp) Method

AirlineInsurance() public method

public AirlineInsurance ( InsuranceType insType, InsuranceScope insScope, PaymentTerms paymentTerms, int insAmount ) : System
insType InsuranceType
insScope InsuranceScope
paymentTerms PaymentTerms
insAmount int
return System
        public AirlineInsurance(InsuranceType insType, InsuranceScope insScope, PaymentTerms paymentTerms, int insAmount)
        {
            Deductible = 0;
            TermLength = 0;
            CancellationFee = 0;
            InsuredAmount = insAmount;
            InsType = insType;
            InsScope = insScope;
            InsTerms = paymentTerms;
        }
AirlineInsurance