/// <summary>
        ///     Creates a new <see cref="!:ActLinkXrefModel" /> instance.
        /// </summary>
        /// <returns>
        ///     A newly instantiated <see cref="!:ActLinkXrefModel" /> instance.
        /// </returns>
        public static Consensus.Activities.ActLinkXref Create()
        {
            ConsensusSite site = ConsensusDomain.Configuration[ConsensusDomain.Configuration.DefaultSite];

            return(ActLinkXref.Create(site));
        }
        /// <summary>
        ///     Retrieves a collection of <see cref="!:ActLinkXrefModel" /> instances.
        /// </summary>
        /// <param name="activityId">
        ///     The value which identifies the <see cref="!:ActLinkXrefModel" /> instances to be returned.
        /// </param>
        /// <returns>
        ///     The <see cref="!:ActLinkXrefModel" /> instances that match the specified <paramref name="activityId" />.
        /// </returns>
        public static IEnumerable <Consensus.Activities.ActLinkXref> FetchAllByActivityId(System.String activityId)
        {
            ConsensusSite site = ConsensusDomain.Configuration[ConsensusDomain.Configuration.DefaultSite];

            return(ActLinkXref.FetchAllByActivityId(site, activityId));
        }
        /// <summary>
        ///     Retrieves a specific <see cref="!:ActLinkXrefModel" /> instance.
        /// </summary>
        /// <param name="id">
        ///     The unique value which distinctly identifies the <see cref="!:ActLinkXrefModel" /> instance to be returned.
        /// </param>
        /// <returns>
        ///     The <see cref="!:ActLinkXrefModel" /> instance that matches the specified <paramref name="id" />; or null, if no matching instance can be found.
        /// </returns>
        public static Consensus.Activities.ActLinkXref FetchById(System.String id)
        {
            ConsensusSite site = ConsensusDomain.Configuration[ConsensusDomain.Configuration.DefaultSite];

            return(ActLinkXref.FetchById(site, id));
        }
        public static System.String GetTableName()
        {
            ConsensusSite site = ConsensusDomain.Configuration[ConsensusDomain.Configuration.DefaultSite];

            return(ActLinkXref.GetTableName(site));
        }
        /// <summary>
        ///     Retrieves all instances of the <see cref="!:ActLinkXrefModel" /> class.
        /// </summary>
        /// <returns>
        ///     An enumerable collection of <see cref="!:ActLinkXrefModel" /> instances.
        /// </returns>
        public static IEnumerable <Consensus.Activities.ActLinkXref> FetchAll()
        {
            ConsensusSite site = ConsensusDomain.Configuration[ConsensusDomain.Configuration.DefaultSite];

            return(ActLinkXref.FetchAll(site));
        }