Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. public class Old1Controller : Controller
  2. {
  3. private readonly ProductService _productService;
  4.  
  5. public Old1Controller()
  6. {
  7. _productService = new ProductService();
  8. }
  9.  
  10. // GET: Old1
  11. public ActionResult Index()
  12. {
  13. var allProducts = _productService.GetAllProductsByStatus();
  14.  
  15. return View();
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement