public HealthRecordController(IUsersService users, IHealthRecordsService records, IPetsService pets, IVetVisitsService vetVisits)
     : base(users)
 {
     this.records = records;
     this.pets = pets;
     this.vetVisits = vetVisits;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="HealthRecordsRuleEngine"/> class.
 /// </summary>
 /// <param name="healthRecordsService">The health records service.</param>
 public HealthRecordsRuleEngine(IHealthRecordsService healthRecordsService)
 {
     _healthRecordsService = healthRecordsService;
 }