예제 #1
0
 public AuthenticationController(GamesContext db, AuthenticationService service) {
     this.db = db;
     this.service = service;
 }
예제 #2
0
 public SettingsController(GamesContext db, CommonService service, AuthenticationService auth) {
     this.db = db;
     this.service = service;
     this.auth = auth;
 }
예제 #3
0
파일: ImageController.cs 프로젝트: proog/g_
 public ImageController(GamesContext db, CommonService service, AuthenticationService auth, IHostingEnvironment env) {
     this.db = db;
     this.service = service;
     this.auth = auth;
     this.environment = env;
 }