Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            DependencyManager.BootstrapForSystem("OmniFileExporterConsole", new DatabaseSettings());

            var performanceReportExcelReportCreator = MasterFactory.GetPerformanceReportExcelReportCreator();

            const string excelFilePath = "c:\\temp\\ExcelReport.xlsx";

            File.Delete(excelFilePath);

            performanceReportExcelReportCreator.CreateReport(new MonthYear(2013, 6), excelFilePath);
        }