コード例 #1
0
 public PetsAdministrationController(IPetService pets, IPetStatusService petStatuses, IUserService users, ILocationService locations, IBreedService breeds)
 {
     this.pets = pets;
     this.petStatuses = petStatuses;
     this.users = users;
     this.locations = locations;
     this.breeds = breeds;
 }
コード例 #2
0
 public PetStatusesAdministrationController(IPetStatusService petStatuses)
 {
     this.petStatuses = petStatuses;
 }