private WSInfoCarreras.ParametrosCarrera _getParametrosCarrera() { WSInfoCarreras.ParametrosCarrera pc = new WSInfoCarreras.ParametrosCarrera(); try { WSInfoCarreras.InfoCarreras ic = new WSInfoCarreras.InfoCarreras(); pc = ic.GetParametrosCarrera(this.UsuarioActual.CarreraActual.Codigo.ToString()); } catch (Exception ex) { Errores err = new Errores(); err.SetError(ex, "_getParametrosCarrera"); } return(pc); }
protected WSInfoCarreras.ParametrosCarrera _getParametrosCarreraPA(string strCodCarrera) { WSInfoCarreras.ParametrosCarrera pc = new WSInfoCarreras.ParametrosCarrera(); try { WSInfoCarreras.InfoCarreras ic = new WSInfoCarreras.InfoCarreras(); pc = ic.GetParametrosCarrera(strCodCarrera); } catch (Exception ex) { Errores err = new Errores(); err.SetError(ex, "_getParametrosCarrera"); } return(pc); }