public void Update(string name, ETypeHealthInsurance type) { Name = name; Type = type; }
public HealthInsurance(string name, ETypeHealthInsurance type) { Name = name; Type = type; _patients = new List <Patient>(); }