Exemplo n.º 1
0
 public AccountController(
     grad_dbContext context,
     ICookieService cookieService)
 {
     _context       = context;
     _cookieService = cookieService;
 }
Exemplo n.º 2
0
 public ManageController(grad_dbContext gradDbContext, IAuthenticationService authenticationService)
 {
     _context = gradDbContext;
     _authenticationService = authenticationService;
 }
Exemplo n.º 3
0
 public OrdersController(grad_dbContext context, IAuthenticationService authenticationService)
 {
     _context = context;
     _authenticationService = authenticationService;
 }
Exemplo n.º 4
0
 public ReportsController(grad_dbContext context, IAuthenticationService authenticationService)
 {
     _context = context;
     this._authenticationService = authenticationService;
 }
 public ShoppingCartsController(grad_dbContext context, IAuthenticationService authenticationService)
 {
     _context = context;
     _authenticationService = authenticationService;
 }
 public AuthenticationService(ICookieService cookieService, grad_dbContext context)
 {
     _context       = context;
     _cookieService = cookieService;
 }