Example #1
0
 public CheckOutServices(IUnitOfWork unitOfWork, IGenericReposistory <Order> orderReposistory, IGenericReposistory <OrderDetail> orderDetailReposistory, IGenericReposistory <ProductDetail> productReposistory)
 {
     _unitOfWork             = unitOfWork;
     _orderReposistory       = orderReposistory;
     _orderDetailReposistory = orderDetailReposistory;
     _productReposistory     = productReposistory;
 }
Example #2
0
 public OrderDetailServices(IUnitOfWork unitOfWork, IGenericReposistory <OrderDetail> genericReposistory) : base(unitOfWork, genericReposistory)
 {
 }
Example #3
0
 public CouponServices(IUnitOfWork unitOfWork, IGenericReposistory <Coupon> genericReposistory) : base(unitOfWork, genericReposistory)
 {
 }
Example #4
0
 public ProductServices(IUnitOfWork unitOfWork, IGenericReposistory <Product> genericReposistory) : base(unitOfWork, genericReposistory)
 {
 }
 public UserService(IGenericReposistory <User> userRepository,
                    ILoggingService loggingService)
 {
     Repository     = userRepository;
     LoggingService = loggingService;
 }
Example #6
0
 public UserServices(IUnitOfWork unitOfWork, IGenericReposistory <User> genericReposistory) : base(unitOfWork, genericReposistory)
 {
 }
Example #7
0
 public CommentServices(IUnitOfWork unitOfWork, IGenericReposistory <Comment> genericReposistory) : base(unitOfWork, genericReposistory)
 {
 }
Example #8
0
 public CategoryServices(IUnitOfWork unitOfWork, IGenericReposistory <Category> genericReposistory) : base(unitOfWork, genericReposistory)
 {
 }
Example #9
0
 public RoleServices(IUnitOfWork unitOfWork, IGenericReposistory <Role> genericReposistory) : base(unitOfWork, genericReposistory)
 {
 }
Example #10
0
 public BaseServices(IUnitOfWork unitOfWork, IGenericReposistory <TEntity> genericReposistory)
 {
     _unitOfWork  = unitOfWork;
     _reposistory = genericReposistory;
 }