Advertisement
Guest User

Untitled

a guest
May 3rd, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. [HttpGet]
  2. public ActionResult Create()
  3. {
  4. ProductRepository productRepository = new ProductRepository();
  5. List<Product> products = productRepository.ListProducts();
  6. return View(products);
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement