public SettingsController(GamesContext db, CommonService service, AuthenticationService auth) { this.db = db; this.service = service; this.auth = auth; }
public AuthenticationController(GamesContext db, AuthenticationService service) { this.db = db; this.service = service; }
public CommonService(GamesContext db, IHostingEnvironment environment) { this.db = db; this.environment = environment; }
public UserController(GamesContext db, CommonService service) { this.db = db; this.service = service; }
public ImageController(GamesContext db, CommonService service, AuthenticationService auth, IHostingEnvironment env) { this.db = db; this.service = service; this.auth = auth; this.environment = env; }