Advertisement
Guest User

Untitled

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