public bool CambiarContrasena(string Actual, string Nueva) { if (Actual != UserHelper.UsuarioSistema.Password) { return(false); } using (SQLContexto contexto = new SQLContexto()) { UsuarioRepo usuarioRepo = new UsuarioRepo(contexto); return(usuarioRepo.CambiarPassword(new Usuario { Legajo = UserHelper.UsuarioSistema.Legajo, Password = Nueva })); } }