예제 #1
0
 public GetOrderByUserIdHandler(IFuhoDbContext fuhoDbContext, ILogger <GetOrderByUserIdHandler> logger)
 {
     _fuhoDbContext = fuhoDbContext;
     _logger        = logger;
 }
예제 #2
0
 public SeedData(IFuhoDbContext fuhoDbContext)
 {
     _fuhoDbContext = fuhoDbContext;
 }
 public GetProductByIdHandler(IFuhoDbContext fuhoDbContext, ILogger <GetProductByIdHandler> logger)
 {
     _fuhoDbContext = fuhoDbContext;
     _logger        = logger;
 }
 public CreateCategoryHandler(IFuhoDbContext fuhoDbContext, IMapper mapper)
 {
     _fuhoDbContext = fuhoDbContext;
     _mapper        = mapper;
 }
 public UpdateCommentHandler(IFuhoDbContext fuhoDbContext, ILogger <UpdateCommentHandler> logger)
 {
     _fuhoDbContext = fuhoDbContext;
     _logger        = logger;
 }
예제 #6
0
 public RemoveProductHandler(IFuhoDbContext fuhoDbContext)
 {
     _fuhoDbContext = fuhoDbContext;
 }
 public CreateProductHandler(IFuhoDbContext fuhoDbContext, IFileSystemService fileSystemService)
 {
     _fuhoDbContext     = fuhoDbContext;
     _fileSystemService = fileSystemService;
 }
 public GetCategoryByIdHandler(IFuhoDbContext fuhoDbContext, ILogger <GetCategoryByIdHandler> logger)
 {
     _fuhoDbContext = fuhoDbContext;
     _logger        = logger;
 }
 public CreateCartHandle(IFuhoDbContext fuhoDbContext)
 {
     _fuhoDbContext = fuhoDbContext;
 }
 public UpdateProductHandler(IFuhoDbContext fuhoDbContext, IFileSystemService fileSystemService, ILogger <UpdateProductHandler> logger)
 {
     _fuhoDbContext     = fuhoDbContext;
     _fileSystemService = fileSystemService;
     _logger            = logger;
 }
예제 #11
0
 public GetAllCategoriesHandler(IFuhoDbContext fuhoDbContext)
 {
     _fuhoDbContext = fuhoDbContext;
 }
 public SeedDataHandler(IFuhoDbContext context)
 {
     _context = context;
 }
예제 #13
0
 public CreateCommentHandler(IFuhoDbContext fuhoDbContext)
 {
     _fuhoDbContext = fuhoDbContext;
 }
예제 #14
0
 public RemoveCategoryHandler(IFuhoDbContext fuhoDbContext)
 {
     _fuhoDbContext = fuhoDbContext;
 }
예제 #15
0
 public GetAllProductsHandler(IFuhoDbContext fuhoDbContext)
 {
     _fuhoDbContext = fuhoDbContext;
 }
예제 #16
0
 public GetCommentByProductIdHandler(IFuhoDbContext fuhoDbContext)
 {
     _fuhoDbContext = fuhoDbContext;
 }
예제 #17
0
 public RemoveCommentHandler(IFuhoDbContext fuhoDbContext)
 {
     _fuhoDbContext = fuhoDbContext;
 }
예제 #18
0
 public CreateOrderHandle(IFuhoDbContext fuhoDbContext, IMapper mapper)
 {
     _fuhoDbContext = fuhoDbContext;
     _mapper        = mapper;
 }