Exemple #1
0
 public ActionsController(IUserPetService userPetService)
 {
     this.userPetService = userPetService;
 }
 public GameController(IUserService userService, IPetService petService, IUserPetService userPetService)
 {
     this.userService    = userService;
     this.petService     = petService;
     this.userPetService = userPetService;
 }
Exemple #3
0
 public PetController(IPetService petService, IUserPetService userPetService)
 {
     this.petService     = petService;
     this.userPetService = userPetService;
 }