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