First, lets solve the problem you have today, which is a way to clean up the repetitive calculation code.
To start with, we need to apply the Stratgey pattern to your price calculation be defining the interface of the calculation and moving the different calculation logic code into their new home:
// calculation common interface
public interface IPriceCalculation
{
public InsurancePrice CalculatePrice(CarData data);
}
// result from the calculation
public class InsurancePrice
{
public string Description { get; set; }
public decimal Price { get; set; }
}
// concrete implementations
public class BrandDealerMonthlyPaymentCalculation : IPriceCalculation
{
public InsurancePrice CalculatePrice(CarData data)
{
// logic to perform calculation of BrandDealer = true, MonthPayment = true
// just for example...
return new InsurancePrice()
{
Description = "Policy price with a Brand dealer and monthly payments",
Price = 250.25;
};
}
}
public class BrandDealerYearlyPaymentCalculation : IPriceCalculation
{
public InsurancePrice CalculatePrice(CarData data)
{
// logic to perform calculation of BrandDealer = true, MonthPayment = false
}
}
public class NonBrandDealerYearlyCalculation : IPriceCalculation
{
public InsurancePrice CalculatePrice(CarData data)
{
// logic to perform calculation of BrandDealer = false, MonthPayment = false
}
}
public class NonBrandDealerMonthlyCalculation : IPriceCalculation
{
public InsurancePrice CalculatePrice(CarData data)
{
// logic to perform calculation of BrandDealer = false, MonthPayment = true
}
}
With the calculations defined, you to install them. Within the class that defines the GetInsurance method (lets call it InsuranceFactory) we will do this in your ctor. This could be done via another class pushing them in via properties, via config, via DI, whatever, but the ctor is simplest for illustration:
public class InsuranceFactory
{
private List<IPriceCalculation> _priceCalculators = new List<IPriceCalculation>();
public InsuranceFactory()
{
_priceCalculators.Add(new BrandDealerYearlyPaymentCalculation());
_priceCalculators.Add(new BrandDealerMonthlyPaymentCalculation());
_priceCalculators.Add(new NonBrandDealerYearlyCalculation());
_priceCalculators.Add(new NonBrandDealerMonthlyCalculation());
// easy to add more calculations right here...
}
}
Next we revisit your GetInsurance method in the InsuranceFactory class above:
public Insurance GetInsurance(CarData carData)
{
var insurance = new Insurance();
// iterate the different pricing models and them to the insurance policy results
foreach (IPriceCalculation calculator in _priceCalculators)
{
insurance.PriceOptions.Add(calculator.CalculatePrice(carData));
}
return insurance;
}
Notice how your GetInsurance method no longer needs to change each time you create a new calculation. Likewise, by storing the results in a list within the insurance object (insurance.PriceOptions) your Insurance class does not need to change either. Your UI code can present all options by iterating that list. This example is slightly simplified but should get you going.
Now a few words on a possible second problem I can anticipate. If your calculation subclasses start having additional permutations you are going to have a class explosion. For example, right now you have 2 factors (Brand and PaySchedule), each with 2 choices, giving you 2 x 2 = 4 classes. But what if we add CreditScore into it, with 3 choices (Goor, Fair, Poor). Then you get:
GoodCreditBrandDealerYearlyPaymentCalculation
GoodCreditBrandDealerMonthlyPaymentCalculation
GoodCreditNonBrandDealerYearlyCalculation
GoodCreditNonBrandDealerMonthlyCalculation
FairCreditBrandDealerYearlyPaymentCalculation
FairCreditBrandDealerMonthlyPaymentCalculation
FairCreditNonBrandDealerYearlyCalculation
FairCreditNonBrandDealerMonthlyCalculation
PoorCreditBrandDealerYearlyPaymentCalculation
PoorCreditBrandDealerMonthlyPaymentCalculation
PoorCreditNonBrandDealerYearlyCalculation
PoorCreditNonBrandDealerMonthlyCalculation
This only gets worse from here. This is really worth its own question and answer if it comes up, but it is something you should watch for. If it start to get like this, refactor the Calculation classes. But what is nice is the code in GetInsurance still doesn't need to change.