示例#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
 public HomeController(F2GContext db, IAuthService auth)
 {
     _db   = db;
     _auth = auth;
 }
示例#4
0
 private string getConnString()
 {
     return(F2GContext.getConnStr("f2gadmin", Configuration["SQLSERVERPASS"]));
 }