예제 #1
0
 public CartService(ICartRepository cartRepository, IProductCartRepository productCartRepository)
 {
     _cartRepository        = cartRepository;
     _productCartRepository = productCartRepository;
 }
예제 #2
0
 public ProductCartService(IProductCartRepository productCartRepository)
 {
     _productCartRepository = productCartRepository;
 }
        //private global::DataAccess.Repositories.ProductCartRepository productCartRepository;

        public ProductCartService(IProductCartRepository repository)
        {
            _repository = repository;
        }
예제 #4
0
 public ProductCartAppService(IMapper mapper, IProductCartRepository productCartRepository, IProductCartService productCartService)
 {
     _mapper = mapper;
     _productCartRepository = productCartRepository;
     _productCartService    = productCartService;
 }