Guest User

Untitled

a guest
Aug 21st, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. MVC Unit Testing a controller
  2. public CustomerController:Controller
  3. {
  4. [Authorize]
  5. public ActionResult GetCustomer(int id)
  6. {
  7. var model=db.Customers.where(c=>c.id==id);
  8. return View(model);
  9. }
  10. }
Add Comment
Please, Sign In to add comment