public ItemCardSizePriceService(IAjkaShopDbContext ajkaShopDbContext,
                                 IUnitOfWork unitOfWork,
                                 IItemCardSizePriceQueries itemCardSizePriceQueries)
 {
     _ajkaShopDbContext        = ajkaShopDbContext;
     _unitOfWork               = unitOfWork;
     _itemCardSizePriceQueries = itemCardSizePriceQueries;
 }
Example #2
0
 public ItemCardSizePriceController(IAjkaShopDbContext ajkaShopDbContext,
                                    IItemCardSizePriceService itemCardSizePriceService,
                                    IItemCardSizePriceQueries itemCardSizePriceQueries)
 {
     _ajkaShopDbContext        = ajkaShopDbContext;
     _itemCardSizePriceService = itemCardSizePriceService;
     _itemCardSizePriceQueries = itemCardSizePriceQueries;
 }