public virtual object Clone() { UserProfile obj = new UserProfile(); obj.UserID = UserID; obj.FirstName = FirstName; obj.LastName = LastName; obj.PhoneNumber = PhoneNumber; obj.Email = Email; return obj; }
/// <summary> /// There are no comments for OnUserProfileChanging in the schema. /// </summary> partial void OnUserProfileChanging(UserProfile value);