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