/// <summary>
        ///     Retrieves a specific <see cref="!:SaqStepModel" /> instance.
        /// </summary>
        /// <param name="id">
        ///     The unique value which distinctly identifies the <see cref="!:SaqStepModel" /> instance to be returned.
        /// </param>
        /// <returns>
        ///     The <see cref="!:SaqStepModel" /> instance that matches the specified <paramref name="id" />; or null, if no matching instance can be found.
        /// </returns>
        public static Consensus.Marketing.SaqStep FetchById(ConsensusSite site, System.Int64 id)
        {
            IBusinessProvider provider = site.GetService <IBusinessProvider>();

            Consensus.Marketing.ISaqStepModel model = provider.Marketing.SaqStep.FetchById(id);
            return(model == null ? null : new Consensus.Marketing.SaqStep(model));
        }
        /// <summary>
        ///     Creates a new <see cref="!:SaqStepModel" /> instance.
        /// </summary>
        /// <returns>
        ///     A newly instantiated <see cref="!:SaqStepModel" /> instance.
        /// </returns>
        public static Consensus.Marketing.SaqStep Create(ConsensusSite site)
        {
            IBusinessProvider provider = site.GetService <IBusinessProvider>();

            Consensus.Marketing.ISaqStepModel model = provider.Marketing.SaqStep.Create();
            return(model == null ? null : new Consensus.Marketing.SaqStep(model));
        }