コード例 #1
0
    private int determinar_secciones_con_id(String ID_SECCION)
    {
        int resultado = 0;

        seccion _seccion = new seccion(Session["idEmpresa"].ToString());
        DataTable tablaInfo = _seccion.ObtenerSeccionPorIdSeccion(ID_SECCION);

        resultado = tablaInfo.Rows.Count;

        return resultado;
    }