public static async Task <byte[]> GetReportBinaryAsync(this IReportBuilder reportBuilder, int year, int month)
        {
            string reportString = await reportBuilder.GetReportAsync(year, month);

            return(Encoding.UTF8.GetBytes(reportString));
        }