/// <summary>
        ///		Creates a new instance of a EventsInfo.
        /// </summary>
        /// <returns>The new EventsInfo instance. </returns>
        public static Entities.EventsInfo Factory()
        {
            OnCreating();
            Entities.EventsInfo eventsInfo = new Entities.EventsInfo();
            OnCreated(eventsInfo);

            return(eventsInfo);
        }
 //	This partial method gives us a way to access an object after it has been added to the system.
 static partial void OnCreated(Entities.EventsInfo eventsInfo);