Example #1
0
 public ProductDetailService()
 {
     this.unitOfWork        = new UnitOfWork();
     this.productDetailRepo = new UnitOfWork().ProductDetailRepo;
 }
Example #2
0
 public ProductDetailService(UnitOfWork unitOfWork, ProductDetailRepo productDetailRepo)
 {
     this.unitOfWork        = unitOfWork;
     this.productDetailRepo = productDetailRepo;
 }
Example #3
0
 public ProductDetailBuss(ProductDetailRepo _repo)
 {
     repo = _repo;
 }