Ejemplo n.º 1
0
 public ProductService(IProductRepsitory ProductRepository)
 {
     this.ProductRepository = ProductRepository;
 }
Ejemplo n.º 2
0
 public ProductBL(IProductRepsitory repo)
 {
     _repo = repo;
 }