public static CompensationScenario TypicalFullTimeJob() => new CompensationScenario(25, TaxProfile.Current(), BenefitsProfile.Typical());
public static CompensationScenario Current() => new CompensationScenario(25, TaxProfile.Current(), BenefitsProfile.None());
public CompensationScenario(int daysOffPerYear, TaxProfile taxProfile, BenefitsProfile benefitsProfile) { DaysOffPerYear = daysOffPerYear; TaxProfile = taxProfile; BenefitsProfile = benefitsProfile; }