public ProductController(IProductService productService, WorldtechDbContext worldtechDbContext,
                          ILoggerManager logger)
 {
     this._productService     = productService;
     this._worldtechDbContext = worldtechDbContext;
     this._logger             = logger;
 }
 public ProductRepository(WorldtechDbContext worldtechContext)
 {
     this._worldtechContext = worldtechContext;
 }
 public ShoppingCartService(WorldtechDbContext worldTechContext)
 {
     this._worldTechDbContext = worldTechContext;
 }
Exemple #4
0
 public CommentRepository(WorldtechDbContext worldtechContext)
 {
     this._worldtechContext = worldtechContext;
 }
Exemple #5
0
 public OrderRepository(WorldtechDbContext worldtechContext)
 {
     this._worldtechContext = worldtechContext;
 }
 public CurrentOrderDetailsRepository(WorldtechDbContext worldtechContext)
 {
     this._worldtechContext = worldtechContext;
 }