public OrdersService(IOrdersRepository ordersRepository, IOrderItemsRepository orderItemsRepository, IProductsRepository productsRepository, ICartItemsRepository cartItemsRepository) { this.ordersRepository = ordersRepository; this.orderItemsRepository = orderItemsRepository; this.productsRepository = productsRepository; this.cartItemsRepository = cartItemsRepository; }
public CartUnitOfWork( ICartRepository cartRepository, ICartItemsRepository cartItemsRepository) { _cartRepository = cartRepository; _cartItemsRepository = cartItemsRepository; }
public CartItemsService(ICartItemsRepository cartItemsRepository, ICartsRepository cartsRepository , IMapper mapper ) { _mapper = mapper; _cartItemsRepo = cartItemsRepository; _cartsRepo = cartsRepository; }
public OrdersService(IOrdersRepository repo, IOrderItemsRepository orderItemsRepo, ICartsRepository cartsRepo, ICartItemsRepository cartItemsRepo, IMapper mapper) { _repo = repo; _orderItemsRepo = orderItemsRepo; _cartsRepo = cartsRepo; _cartItemsRepo = cartItemsRepo; _mapper = mapper; }
public CartItemsController(ICartRepository cartRepository, ICartItemsRepository cartItemsRepository, ITournamentRepository tournamentRepository, ITournamentService tournamentService, IMapper mapper) { _cartRepository = cartRepository; _cartItemsRepository = cartItemsRepository; _tournamentRepository = tournamentRepository; _tournamentService = tournamentService; _mapper = mapper; }
public CartService( ICartRepository cartRepository, ICartItemsRepository cartItemsRepository, ICustomerCartRepository customerCartRepository, IUserRepository userRepository, IUnitOfWork unitOfWork) { this.cartRepository = cartRepository; this.cartItemsRepository = cartItemsRepository; this.customerCartRepository = customerCartRepository; this.userRepository = userRepository; this.unitOfWork = unitOfWork; }
public OrderService( IOrderRepository orderRepository, IOrderItemsRepository orderItemsRepository, ICustomerOrderRepository customerOrderRepository, ICartItemsRepository cartItemsRepository, IUserRepository userRepository, IUnitOfWork unitOfWork) { this.orderRepository = orderRepository; this.orderItemsRepository = orderItemsRepository; this.customerOrderRepository = customerOrderRepository; this.cartItemsRepository = cartItemsRepository; this.userRepository = userRepository; this.unitOfWork = unitOfWork; }
public CartItemsService(ICartItemsRepository repo, IMapper mapper) { _repo = repo; _mapper = mapper; }
public CartItemsService(ICartItemsRepository repo) { _repo = repo; }
public CartItemsService(ICartItemsRepository repo, IProductsService products) { _repo = repo; _products = products; }
public CartItemsService(ICartItemsRepository cartItemsRepository) { _cartItemsRepository = cartItemsRepository; }
public CartsRepository(ISalonDbContext dbContext, ICartItemsRepository cartItemsRepo) { this._dbContext = dbContext; this._cartItemsRepo = cartItemsRepo; }