public async Task <ResponseModel> ResponseReportAsync(Guid id, ReportManageModel reportManageModel)
        {
            var report = await _reportRepository.GetByIdAsync(id);

            if (report == null)
            {
                return(new ResponseModel
                {
                    StatusCode = System.Net.HttpStatusCode.NotFound,
                    Message = "This Report is not exist!"
                });
            }
            else
            {
                reportManageModel.GetReportFromModel(report);
                return(await _reportRepository.UpdateAsync(report));
            }
        }