コード例 #1
0
ファイル: AuthenticationController.cs プロジェクト: proog/g_
 public AuthenticationController(GamesContext db, AuthenticationService service) {
     this.db = db;
     this.service = service;
 }
コード例 #2
0
ファイル: SettingsController.cs プロジェクト: proog/g_
 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;
 }