public async Task <FileContentResult> GetCertificate()
        {
            var bytes = await _pdfGenerator.GenerateExamplePdf("John Smith");

            var fileStreamResult = new FileContentResult(bytes, "application/pdf");

            return(fileStreamResult);
        }