コード例 #1
0
 public AccountController(
     grad_dbContext context,
     ICookieService cookieService)
 {
     _context       = context;
     _cookieService = cookieService;
 }
コード例 #2
0
 public ManageController(grad_dbContext gradDbContext, IAuthenticationService authenticationService)
 {
     _context = gradDbContext;
     _authenticationService = authenticationService;
 }
コード例 #3
0
 public OrdersController(grad_dbContext context, IAuthenticationService authenticationService)
 {
     _context = context;
     _authenticationService = authenticationService;
 }
コード例 #4
0
 public ReportsController(grad_dbContext context, IAuthenticationService authenticationService)
 {
     _context = context;
     this._authenticationService = authenticationService;
 }
コード例 #5
0
 public ShoppingCartsController(grad_dbContext context, IAuthenticationService authenticationService)
 {
     _context = context;
     _authenticationService = authenticationService;
 }
コード例 #6
0
 public AuthenticationService(ICookieService cookieService, grad_dbContext context)
 {
     _context       = context;
     _cookieService = cookieService;
 }