コード例 #1
0
 public HomeController(PrimoContext context)
 {
     _reader = new Reader(context);
 }
コード例 #2
0
ファイル: Reader.cs プロジェクト: oveldman/msprimo
 public Reader(PrimoContext newContext)
 {
     _dbRead = new DbRead(newContext);
 }
コード例 #3
0
ファイル: DbRead.cs プロジェクト: oveldman/msprimo
 public DbRead(PrimoContext newContext)
 {
     _context = newContext;
 }
コード例 #4
0
ファイル: Editor.cs プロジェクト: oveldman/msprimo
 public Editor(PrimoContext newContext)
 {
     _dbWrite = new DbWrite(newContext);
     _dbRead  = new DbRead(newContext);
 }
コード例 #5
0
ファイル: DbWrite.cs プロジェクト: oveldman/msprimo
 public DbWrite(PrimoContext newContext)
 {
     _context = newContext;
 }
コード例 #6
0
 public AdminController(SignInManager <User> signInManager, UserManager <User> userManager, PrimoContext context)
 {
     _authenticationManager = new AuthenticationManager(signInManager, userManager);
     _editor = new Editor(context);
     _reader = new Reader(context);
 }