Exemplo n.º 1
0
 public HomeController(EshopDBContext EshopDBContext, ILogger <HomeController> logger)
 {
     this.EshopDBContext = EshopDBContext;
     this.logger         = logger;
 }
Exemplo n.º 2
0
 public CustomerOrderNotCartController(ISecurityApplicationService iSecure, EshopDBContext eshopDBContext)
 {
     this.iSecure   = iSecure;
     EshopDBContext = eshopDBContext;
 }
Exemplo n.º 3
0
 public CarouselController(EshopDBContext eshopDBContext, IHostingEnvironment env, ILogger <CarouselController> logger)
 {
     this.EshopDBContext = eshopDBContext;
     this.Env            = env;
     this.logger         = logger;
 }
Exemplo n.º 4
0
 public OrderItemsController(EshopDBContext context)
 {
     _context = context;
 }
Exemplo n.º 5
0
 public ProductsController(EshopDBContext eshopDBContex)
 {
     this.EshopDBContext = eshopDBContex;
 }
Exemplo n.º 6
0
 public OrderItemsController(EshopDBContext context, ILogger <OrderItemsController> logger)
 {
     _context    = context;
     this.logger = logger;
 }
Exemplo n.º 7
0
 public CommentsController(EshopDBContext context, ILogger <CommentsController> logger)
 {
     _context    = context;
     this.logger = logger;
 }
Exemplo n.º 8
0
 public ProductsController(EshopDBContext eshopDBContext, IHostingEnvironment env, ILogger <ProductsController> logger)
 {
     this.EshopDBContext = eshopDBContext;
     this.Env            = env;
     this.logger         = logger;
 }
Exemplo n.º 9
0
 public ProductsController(EshopDBContext eshopDBContext, IHostingEnvironment env)
 {
     this.EshopDBContext = eshopDBContext;
     this.Env            = env;
 }
Exemplo n.º 10
0
 public CarouselController(EshopDBContext eshopDBContext, IHostingEnvironment env)
 {
     this.EshopDBContext = eshopDBContext;
     this.Env            = env;
 }
Exemplo n.º 11
0
 public ProductsController(EshopDBContext EshopDBContext, ILogger <HomeController> logger, ISecurityApplicationService iSecure)
 {
     this.EshopDBContext = EshopDBContext;
     this.logger         = logger;
     this.iSecure        = iSecure;
 }
Exemplo n.º 12
0
 public CartController(EshopDBContext context)
 {
     _context = context;
 }
Exemplo n.º 13
0
 public OrderService(EshopDBContext context)
 {
     _context = context;
 }
Exemplo n.º 14
0
 public ProductService(EshopDBContext context)
 {
     _context = context;
 }
 public CustomerOrderNotCartController(ISecurityApplicationService iSecure, EshopDBContext eshopDBContext, ILogger <CustomerOrderNotCartController> logger)
 {
     this.iSecure   = iSecure;
     EshopDBContext = eshopDBContext;
     this.logger    = logger;
 }
Exemplo n.º 16
0
 public UsersController(EshopDBContext context, ILogger <UsersController> logger)
 {
     _context    = context;
     this.logger = logger;
 }
Exemplo n.º 17
0
 public UsersController(EshopDBContext context)
 {
     _context = context;
 }