//Autenticar public UsuarioDTO AutenticaUser(string objUser, string objSenha) { UsuarioDTO user = objBLL.Altentica(objUser, objSenha); if (user != null) { return(user); } else { throw new Exception("Tente novamente."); } }