示例#1
0
 public HomeController(EshopDBContext EshopDBContext, ILogger <HomeController> logger)
 {
     this.EshopDBContext = EshopDBContext;
     this.logger         = logger;
 }
示例#2
0
 public CustomerOrderNotCartController(ISecurityApplicationService iSecure, EshopDBContext eshopDBContext)
 {
     this.iSecure   = iSecure;
     EshopDBContext = eshopDBContext;
 }
示例#3
0
 public CarouselController(EshopDBContext eshopDBContext, IHostingEnvironment env, ILogger <CarouselController> logger)
 {
     this.EshopDBContext = eshopDBContext;
     this.Env            = env;
     this.logger         = logger;
 }
 public OrderItemsController(EshopDBContext context)
 {
     _context = context;
 }
示例#5
0
 public ProductsController(EshopDBContext eshopDBContex)
 {
     this.EshopDBContext = eshopDBContex;
 }
示例#6
0
 public OrderItemsController(EshopDBContext context, ILogger <OrderItemsController> logger)
 {
     _context    = context;
     this.logger = logger;
 }
示例#7
0
 public CommentsController(EshopDBContext context, ILogger <CommentsController> logger)
 {
     _context    = context;
     this.logger = logger;
 }
示例#8
0
 public ProductsController(EshopDBContext eshopDBContext, IHostingEnvironment env, ILogger <ProductsController> logger)
 {
     this.EshopDBContext = eshopDBContext;
     this.Env            = env;
     this.logger         = logger;
 }
示例#9
0
 public ProductsController(EshopDBContext eshopDBContext, IHostingEnvironment env)
 {
     this.EshopDBContext = eshopDBContext;
     this.Env            = env;
 }
示例#10
0
 public CarouselController(EshopDBContext eshopDBContext, IHostingEnvironment env)
 {
     this.EshopDBContext = eshopDBContext;
     this.Env            = env;
 }
示例#11
0
 public ProductsController(EshopDBContext EshopDBContext, ILogger <HomeController> logger, ISecurityApplicationService iSecure)
 {
     this.EshopDBContext = EshopDBContext;
     this.logger         = logger;
     this.iSecure        = iSecure;
 }
示例#12
0
 public CartController(EshopDBContext context)
 {
     _context = context;
 }
示例#13
0
 public OrderService(EshopDBContext context)
 {
     _context = context;
 }
示例#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;
 }
示例#16
0
 public UsersController(EshopDBContext context, ILogger <UsersController> logger)
 {
     _context    = context;
     this.logger = logger;
 }
示例#17
0
 public UsersController(EshopDBContext context)
 {
     _context = context;
 }