public PetController(IPetService petService, IAnimalShelterServices animalShelter)
 {
     _petService    = petService;
     _animalShelter = animalShelter;
 }
 public AnimalShelterController(IAnimalShelterServices animalShelterService)
 {
     _animalShelterService = animalShelterService;
 }