/// <summary>
        ///     Creates a new <see cref="!:ReportPageModel" /> instance.
        /// </summary>
        /// <returns>
        ///     A newly instantiated <see cref="!:ReportPageModel" /> instance.
        /// </returns>
        public static Consensus.Reporting.ReportPage Create(ConsensusSite site)
        {
            IBusinessProvider provider = site.GetService <IBusinessProvider>();

            Consensus.Reporting.IReportPageModel model = provider.Reporting.ReportPage.Create();
            return(model == null ? null : new Consensus.Reporting.ReportPage(model));
        }
        /// <summary>
        ///     Retrieves a specific <see cref="!:ReportPageModel" /> instance.
        /// </summary>
        /// <param name="id">
        ///     The unique value which distinctly identifies the <see cref="!:ReportPageModel" /> instance to be returned.
        /// </param>
        /// <returns>
        ///     The <see cref="!:ReportPageModel" /> instance that matches the specified <paramref name="id" />; or null, if no matching instance can be found.
        /// </returns>
        public static Consensus.Reporting.ReportPage FetchById(ConsensusSite site, System.Int32 id)
        {
            IBusinessProvider provider = site.GetService <IBusinessProvider>();

            Consensus.Reporting.IReportPageModel model = provider.Reporting.ReportPage.FetchById(id);
            return(model == null ? null : new Consensus.Reporting.ReportPage(model));
        }