Ejemplo n.º 1
0
 public ItemCardSizePriceService(IAjkaShopDbContext ajkaShopDbContext,
                                 IUnitOfWork unitOfWork,
                                 IItemCardSizePriceQueries itemCardSizePriceQueries)
 {
     _ajkaShopDbContext        = ajkaShopDbContext;
     _unitOfWork               = unitOfWork;
     _itemCardSizePriceQueries = itemCardSizePriceQueries;
 }
Ejemplo n.º 2
0
 public ItemCardSizePriceController(IAjkaShopDbContext ajkaShopDbContext,
                                    IItemCardSizePriceService itemCardSizePriceService,
                                    IItemCardSizePriceQueries itemCardSizePriceQueries)
 {
     _ajkaShopDbContext        = ajkaShopDbContext;
     _itemCardSizePriceService = itemCardSizePriceService;
     _itemCardSizePriceQueries = itemCardSizePriceQueries;
 }