public JsonResult DesautenticarUsuario()
 {
     if (GestaoCookie.ApagarCookie())
     {
         return(Json(new { OK = true }, JsonRequestBehavior.AllowGet));
     }
     else
     {
         return(Json(new { OK = false }, JsonRequestBehavior.AllowGet));
     }
 }
Beispiel #2
0
 public static bool VerificarUsuarioBD(string login, string senha)
 {
     try
     {
         ImovelBDEntities db = new ImovelBDEntities();
         var usuario         =
             db.Usuario.Where(x => x.Login == login && x.Senha == senha).SingleOrDefault();
         if (usuario == null)
         {
             return(false);
         }
         else
         {
             GestaoCookie.CriarCookie(usuario.IdUsuario);
             return(true);
         }
     }
     catch (Exception)
     {
         return(false);
     }
 }