public static void main(String[] args) {
// module b49c
ReportFactory reportFactory = new ReportFactoryB49C();
ReportService reportService =
reportFactory.create(ReportType.ANALITIC);
reportService.getReport();
// module prp6
reportFactory = new ReportFactoryPRP6();
reportService = reportFactory.create(ReportType.ANALITIC);
reportService.getReport();
}