GetProducts() 공개 메소드

public GetProducts ( ) : IEnumerable
리턴 IEnumerable
예제 #1
0
 public VMProduct()
 {
     repo = new ProductRepo();
     this.ListOfProducts = repo.GetProducts().ToList();
 }
예제 #2
0
 public VMProduct() {
     repo = new ProductRepo();
     this.ListOfProducts = repo.GetProducts().ToList();
 }