Guest User

Untitled

a guest
Jan 22nd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. public IActionResult FazerLogin(Clientes cli)
  2. {
  3. if (!ModelState.IsValid)
  4. {
  5. ModelState.AddModelError("CliSenhaWeb", "ID ou senha incorreto");
  6. return View("Login");
  7. }
  8.  
  9. if (cli.ValidarAcesso(cli.CliCodigo, cli.CliSenhaWeb, _config) > 0)
  10. {
  11. if (cli.Acesso > 0)
  12. {
  13. return RedirectToAction("Index", "Home");
  14. }
  15.  
  16. }
  17.  
  18. return View();
  19. }
Add Comment
Please, Sign In to add comment