public Usuarios Login(string User, string Pass) { try { GestorBase BD = new GestorBase(); return(BD.Login(User, Pass)); } catch (Exception ex) { throw new Exception(ex.Message, ex); } }