Exemple #1
0
        void ProcedInsertPivot()
        {
            InsertPivotTableAction.Data data = new InsertPivotTableAction.Data()
            {
                Excel = _IExcel
            };

            InsertPivotTableAction insertPivotTableAction = new InsertPivotTableAction();

            insertPivotTableAction.Execute(data);
        }
Exemple #2
0
        public void AttachPivotTable()
        {
            ExcelOutput excel = new ExcelOutput();

            InsertPivotTableAction.Data actionData = new InsertPivotTableAction.Data {
                Excel = excel
            };
            InsertPivotTableAction action = new InsertPivotTableAction();

            action.Execute(actionData);
        }