예제 #1
0
파일: WcfDto.cs 프로젝트: kahanu/CondorXE
        private void RenderProperties(ITable table)
        {
            Condor.Core.Property prop = null;
            foreach (IColumn c in table.Columns)
            {
                prop = new WcfPropertyRenderDto(c, _context);
                prop.Render();
            }

            WcfForeignKeyPropertiesDtos dtos = new WcfForeignKeyPropertiesDtos(table, _context);

            dtos.Render();
        }
예제 #2
0
파일: WcfDto.cs 프로젝트: kahanu/CondorXE
        private void RenderProperties(ITable table)
        {
            Condor.Core.Property prop = null;
            foreach (IColumn c in table.Columns)
            {
                prop = new WcfPropertyRenderDto(c, _context);
                prop.Render();
            }

            WcfForeignKeyPropertiesDtos dtos = new WcfForeignKeyPropertiesDtos(table, _context);
            dtos.Render();
        }