Exemple #1
0
 public POS2ProductService(IPOS2ProductRepository productRepository, IPOS2ProductTagRepository productTagRepository,
                           IPOS2TagRepository _tagRepository, IPOS2UnitOfWork unitOfWork)
 {
     this._productRepository    = productRepository;
     this._productTagRepository = productTagRepository;
     this._tagRepository        = _tagRepository;
     this._unitOfWork           = unitOfWork;
 }
Exemple #2
0
 public POS2OrderService(IPOS2OrderRepository orderRepository, IPOS2OrderDetailRepository orderDetailRepository, IPOS2UnitOfWork unitOfWork)
 {
     this._orderRepository       = orderRepository;
     this._orderDetailRepository = orderDetailRepository;
     this._unitOfWork            = unitOfWork;
 }
Exemple #3
0
 public POS2ProductCategoryService(IPOS2ProductCategoryRepository ProductCategoryRepository, IPOS2UnitOfWork unitOfWork)
 {
     this._productCategoryRepository = ProductCategoryRepository;
     this._unitOfWork = unitOfWork;
 }
 public POS2ProductImageService(IPOS2ProductImageRepository productImageRepository, IPOS2UnitOfWork unitOfWork)
 {
     this._productImageRepository = productImageRepository;
     this._unitOfWork             = unitOfWork;
 }