public POS1ProductService(IPOS1ProductRepository productRepository, IPOS1ProductTagRepository productTagRepository,
                           IPOS1TagRepository _tagRepository, IPOS1UnitOfWork unitOfWork)
 {
     this._productRepository    = productRepository;
     this._productTagRepository = productTagRepository;
     this._tagRepository        = _tagRepository;
     this._unitOfWork           = unitOfWork;
 }
 public POS1OrderService(IPOS1OrderRepository orderRepository, IPOS1OrderDetailRepository orderDetailRepository, IPOS1UnitOfWork unitOfWork)
 {
     this._orderRepository       = orderRepository;
     this._orderDetailRepository = orderDetailRepository;
     this._unitOfWork            = unitOfWork;
 }
Ejemplo n.º 3
0
 public POS1ProductCategoryService(IPOS1ProductCategoryRepository ProductCategoryRepository, IPOS1UnitOfWork unitOfWork)
 {
     this._productCategoryRepository = ProductCategoryRepository;
     this._unitOfWork = unitOfWork;
 }
 public POS1ProductImageService(IPOS1ProductImageRepository productImageRepository, IPOS1UnitOfWork unitOfWork)
 {
     this._productImageRepository = productImageRepository;
     this._unitOfWork             = unitOfWork;
 }