Advertisement
Guest User

Untitled

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