コード例 #1
0
 public PetController(IPetService petService, IAnimalShelterServices animalShelter)
 {
     _petService    = petService;
     _animalShelter = animalShelter;
 }
コード例 #2
0
 public AnimalShelterController(IAnimalShelterServices animalShelterService)
 {
     _animalShelterService = animalShelterService;
 }