コード例 #1
0
 public ResultsController(F2GContext db, IAuthService auth)
 {
     _db   = db;
     _auth = auth;
 }
コード例 #2
0
 public AccountController(F2GContext db, IAuthService auth)
 {
     _db   = db;
     _auth = auth;
 }
コード例 #3
0
ファイル: HomeController.cs プロジェクト: cloudcrypt/File2Go
 public HomeController(F2GContext db, IAuthService auth)
 {
     _db   = db;
     _auth = auth;
 }
コード例 #4
0
ファイル: Startup.cs プロジェクト: cloudcrypt/File2Go
 private string getConnString()
 {
     return(F2GContext.getConnStr("f2gadmin", Configuration["SQLSERVERPASS"]));
 }