mtsys

Untitled

Jan 9th, 2018
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.24 KB | None | 0 0
  1. public ActionResult Cadastro(int? id)
  2. {
  3.     if (id != null)
  4.     {
  5.         using (var db = new Conexao())
  6.         {
  7.             var registro = db.BlogSecao.Find(id);
  8.             return View(registro);
  9.         }
  10.     }
  11.  
  12.     return View();
  13. }
Advertisement
Add Comment
Please, Sign In to add comment