예제 #1
0
파일: class Post.cs 프로젝트: eugman/SqlFu
 public static sfPosts Create()
 {
     var p = new sfPosts();
     p.AuthorId = 2;
     p.Title="123gf";
     p.CreatedOn = DateTime.UtcNow;
  //   p.Type = PostType.Page;
     p.IsActive = true;
     return p;
 }
예제 #2
0
        public static sfPosts Create()
        {
            var p = new sfPosts();

            p.AuthorId  = 2;
            p.Title     = "123gf";
            p.CreatedOn = DateTime.UtcNow;
            //   p.Type = PostType.Page;
            p.IsActive = true;
            return(p);
        }