Пример #1
0
 public SpelAPIController(ISpelService spelService)
 {
     _spelService = spelService;
 }
Пример #2
0
 public SpelAPIController(ISpelService spelService, IAuthenticationService authSevice)
 {
     _spelService = spelService;
     _authService = authSevice;
 }
Пример #3
0
 public SpelController(IAuthenticationService authService, ISpelService spelService)
 {
     _authService = authService;
     _spelService = spelService;
 }