GetProducts() public method

public GetProducts ( ) : IEnumerable
return IEnumerable
Exemplo n.º 1
0
 public VMProduct()
 {
     repo = new ProductRepo();
     this.ListOfProducts = repo.GetProducts().ToList();
 }
Exemplo n.º 2
0
 public VMProduct() {
     repo = new ProductRepo();
     this.ListOfProducts = repo.GetProducts().ToList();
 }