public HomeController(ILogger <HomeController> logger, FrontendService frontendService)
 {
     _Logger          = logger;
     _FrontendService = frontendService;
 }
 public FrontendController(FrontendService frontendService)
 {
     _frontendService = frontendService;
 }
Example #3
0
 public IndexModel(FrontendService frontendService)
 {
     this.frontendService = frontendService;
 }
Example #4
0
 public AuthController(FrontendService frontendService, JwtService jwtService)
 {
     _FrontendService = frontendService;
     _JwtService      = jwtService;
 }