Exemplo n.º 1
0
 public SettingsController(GamesContext db, CommonService service, AuthenticationService auth) {
     this.db = db;
     this.service = service;
     this.auth = auth;
 }
Exemplo n.º 2
0
 public AuthenticationController(GamesContext db, AuthenticationService service) {
     this.db = db;
     this.service = service;
 }
Exemplo n.º 3
0
 public CommonService(GamesContext db, IHostingEnvironment environment)
 {
     this.db = db;
     this.environment = environment;
 }
Exemplo n.º 4
0
 public UserController(GamesContext db, CommonService service)
 {
     this.db = db;
     this.service = service;
 }
Exemplo n.º 5
0
 public ImageController(GamesContext db, CommonService service, AuthenticationService auth, IHostingEnvironment env) {
     this.db = db;
     this.service = service;
     this.auth = auth;
     this.environment = env;
 }