Esempio n. 1
0
 public SpelAPIController(ISpelService spelService)
 {
     _spelService = spelService;
 }
Esempio n. 2
0
 public SpelAPIController(ISpelService spelService, IAuthenticationService authSevice)
 {
     _spelService = spelService;
     _authService = authSevice;
 }
Esempio n. 3
0
 public SpelController(IAuthenticationService authService, ISpelService spelService)
 {
     _authService = authService;
     _spelService = spelService;
 }