/// <summary>
        ///     Retrieves a collection of <see cref="!:ScreenObjectColumnModel" /> instances.
        /// </summary>
        /// <param name="screenObjectId">
        ///     The value which identifies the <see cref="!:ScreenObjectColumnModel" /> instances to be returned.
        /// </param>
        /// <returns>
        ///     The <see cref="!:ScreenObjectColumnModel" /> instances that match the specified <paramref name="screenObjectId" />.
        /// </returns>
        public static IEnumerable <Consensus.UserInterface.ScreenObjectColumn> FetchAllByScreenObjectId(System.Int32 screenObjectId)
        {
            ConsensusSite site = ConsensusDomain.Configuration[ConsensusDomain.Configuration.DefaultSite];

            return(ScreenObjectColumn.FetchAllByScreenObjectId(site, screenObjectId));
        }
        public static System.String GetTableName()
        {
            ConsensusSite site = ConsensusDomain.Configuration[ConsensusDomain.Configuration.DefaultSite];

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

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

            return(ScreenObjectColumn.FetchById(site, id));
        }
        /// <summary>
        ///     Creates a new <see cref="!:ScreenObjectColumnModel" /> instance.
        /// </summary>
        /// <returns>
        ///     A newly instantiated <see cref="!:ScreenObjectColumnModel" /> instance.
        /// </returns>
        public static Consensus.UserInterface.ScreenObjectColumn Create()
        {
            ConsensusSite site = ConsensusDomain.Configuration[ConsensusDomain.Configuration.DefaultSite];

            return(ScreenObjectColumn.Create(site));
        }