PdfRpt.Core.PdfTable.RenderMainTable.initManagers C# (CSharp) Méthode

initManagers() private méthode

private initManagers ( ) : void
Résultat void
        private void initManagers()
        {
            _groupsManager = new GroupsManager
                                 {
                                     SharedData = _commonManagersInfoData,
                                     InitTable = _initTable,
                                     MainTable = _mainTable,
                                     CurrentRowInfoData = CurrentRowInfoData,
                                     TableCellHelper = _tableCellHelper,
                                     MainGroupTable = _mainGroupTable
                                 };

            _rowsManager = new RowsManager
                               {
                                   SharedData = _commonManagersInfoData,
                                   TableCellHelper = _tableCellHelper,
                                   MainTable = _mainTable,
                                   GroupsManager = _groupsManager,
                                   MainGroupTable = _mainGroupTable,
                                   CurrentRowInfoData = CurrentRowInfoData
                               };

            _groupsManager.RowsManager = _rowsManager;
        }