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