Ejemplo n.º 1
0
 public ItemCardImageController(IAjkaShopDbContext ajkaShopDbContext,
                                IItemCardImageService itemCardImageService,
                                IItemCardImageQueries itemCardImageQueries)
 {
     _ajkaShopDbContext    = ajkaShopDbContext;
     _itemCardImageService = itemCardImageService;
     _itemCardImageQueries = itemCardImageQueries;
 }
Ejemplo n.º 2
0
 public ItemCardImageService(IAjkaShopDbContext ajkaShopDbContext,
                             IUnitOfWork unitOfWork,
                             IWebHostEnvironment environment,
                             IFileProcessingService fileProcessingService,
                             IItemCardImageQueries itemCardImageQueries)
 {
     _ajkaShopDbContext     = ajkaShopDbContext;
     _unitOfWork            = unitOfWork;
     _environment           = environment;
     _fileProcessingService = fileProcessingService;
     _itemCardImageQueries  = itemCardImageQueries;
 }