public Report GetReport(Guid guid)
        {
            Report report = Reports.Find(r => r.Guid == guid);

            Debug.Assert(report != null, "Report not found");
            return(report);
        }