public static List <GrupoBean> GetPadres(GrupoBean item) { List <GrupoBean> result = new List <GrupoBean>(); DataTable dt = GrupoModel.GetPadres(item); if (dt != null && dt.Rows.Count > 0) { foreach (DataRow row in dt.Rows) { GrupoBean obj = new GrupoBean { IDGrupo = int.Parse(row["IDGrupo"].ToString()), Codigo = row["Codigo"].ToString(), Nombre = row["Nombre"].ToString(), IdNivel = int.Parse(row["IdNivel"].ToString()), CodigoPadreGrupo = row["CodigoPadreGrupo"].ToString(), tipo = row["tipo"].ToString(), FlgHabilitado = row["FlgHabilitado"].ToString(), }; result.Add(obj); } } return(result); }