예제 #1
0
파일: Post.cs 프로젝트: harder/GraffitiCMS
        public static Post FromXML(string xml)
        {
            Post the_Post = ObjectManager.ConvertToObject <Post>(xml);

            the_Post.Loaded();
            the_Post.ResetStatus();

            return(the_Post);
        }