GetProducts() public method

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