public void SetInsurance(IInsuranceState state)
 {
     _state = state;
 }
 public InsuranceProvider()
 {
     _state = new Insured();
 }