Exemplo n.º 1
0
 public GetOrderByUserIdHandler(IFuhoDbContext fuhoDbContext, ILogger <GetOrderByUserIdHandler> logger)
 {
     _fuhoDbContext = fuhoDbContext;
     _logger        = logger;
 }
Exemplo n.º 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;
 }
Exemplo n.º 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;
 }
Exemplo n.º 11
0
 public GetAllCategoriesHandler(IFuhoDbContext fuhoDbContext)
 {
     _fuhoDbContext = fuhoDbContext;
 }
 public SeedDataHandler(IFuhoDbContext context)
 {
     _context = context;
 }
Exemplo n.º 13
0
 public CreateCommentHandler(IFuhoDbContext fuhoDbContext)
 {
     _fuhoDbContext = fuhoDbContext;
 }
Exemplo n.º 14
0
 public RemoveCategoryHandler(IFuhoDbContext fuhoDbContext)
 {
     _fuhoDbContext = fuhoDbContext;
 }
Exemplo n.º 15
0
 public GetAllProductsHandler(IFuhoDbContext fuhoDbContext)
 {
     _fuhoDbContext = fuhoDbContext;
 }
Exemplo n.º 16
0
 public GetCommentByProductIdHandler(IFuhoDbContext fuhoDbContext)
 {
     _fuhoDbContext = fuhoDbContext;
 }
Exemplo n.º 17
0
 public RemoveCommentHandler(IFuhoDbContext fuhoDbContext)
 {
     _fuhoDbContext = fuhoDbContext;
 }
Exemplo n.º 18
0
 public CreateOrderHandle(IFuhoDbContext fuhoDbContext, IMapper mapper)
 {
     _fuhoDbContext = fuhoDbContext;
     _mapper        = mapper;
 }