Exemplo n.º 1
0
 public ActionsController(IUserPetService userPetService)
 {
     this.userPetService = userPetService;
 }
Exemplo n.º 2
0
 public GameController(IUserService userService, IPetService petService, IUserPetService userPetService)
 {
     this.userService    = userService;
     this.petService     = petService;
     this.userPetService = userPetService;
 }
Exemplo n.º 3
0
 public PetController(IPetService petService, IUserPetService userPetService)
 {
     this.petService     = petService;
     this.userPetService = userPetService;
 }