Example #1
0
 public ProductListController(IWebshopItems context, IAuthenticationService authenticationService)
 {
     _context = context;
     _authenticationService = authenticationService;
 }
Example #2
0
 public HomeController(IWebshopItems context, IAuthenticationService authenticationService)
 {
     _context = context;
     _authenticationService = authenticationService;
     _homeInformationModel  = new HomeInformationModel();
 }
 public ProductController(IWebshopItems context)
 {
     _context = context;
 }