public CheckResult CheckOccupation(Risk risk)
 {
     return _occupationChecker.Check(risk.Occupation);
 }
 public CheckResult CheckKeptLocation(Risk risk)
 {
     return _vehicleKeptChecker.Check(risk.Address.Postcode, risk.KeptPostcode ?? risk.Address.Postcode);
 }