public void CreatePdfUserReport(TelecommunicationDbContext telecommunicationDbContext, string fileName)
 {
     var pdfReport = new PdfReportGenerator();
     pdfReport.CreateUserReport(telecommunicationDbContext.Users, fileName);
 }