public void Print()
 {
     FileFactory.CreateFile(folderFactory.GetLayoutFolder(),
                            "allEca.txt",
                            new EcasJson().ToString()
                            );
     FileFactory.CreateFile(folderFactory.GetLayoutFolder(),
                            "ecaWithNoSentToTdmsDate.txt",
                            new NoSentToTdmsEcasJson().ToString()
                            );
     FileFactory.CreateFile(folderFactory.GetLayoutFolder(),
                            "forecast.txt",
                            new CaForecast(
                                new SummaryContextFactory()
                                ).ToString()
                            );
     FileFactory.CreateFile(folderFactory.GetLayoutFolder(),
                            "report.txt",
                            new CaReport(
                                new TdmsContext(
                                    App
                                    )
                                ).ToString());;
 }