예제 #1
0
        /// <summary>
        ///		Creates a new instance of a SocialUser.
        /// </summary>
        /// <returns>The new SocialUser instance. </returns>
        public static Entities.SocialUser Factory()
        {
            OnCreating();
            Entities.SocialUser socialUser = new Entities.SocialUser();
            OnCreated(socialUser);

            return(socialUser);
        }
예제 #2
0
 //	This partial method gives us a way to access an object after it has been added to the system.
 static partial void OnCreated(Entities.SocialUser socialUser);