Ejemplo n.º 1
0
        public static bool CreatePost(string PostTitle, string Post, int AuthorID, DateTime DatePosted)
        {
            //context should be hidden behind an interface probably
            string uname = HttpContext.Current.User.Identity.Name;
            NewsItem item = new NewsItem()
            {
                Title = PostTitle,
                Content = Post,
                UserId = AuthorID,
                CreatedOn = DatePosted,
                ModifiedOn = DatePosted,
                CreatedBy = uname,
                ModifiedBy = uname
            };

            var ctx = new Models.ICCData();

            ctx.NewsItems.InsertOnSubmit(item);

            ctx.SubmitChanges();
            return true;
        }
Ejemplo n.º 2
0
        public static bool CreatePost(string PostTitle, string Post, int AuthorID, DateTime DatePosted)
        {
            //context should be hidden behind an interface probably
            string   uname = HttpContext.Current.User.Identity.Name;
            NewsItem item  = new NewsItem()
            {
                Title      = PostTitle,
                Content    = Post,
                UserId     = AuthorID,
                CreatedOn  = DatePosted,
                ModifiedOn = DatePosted,
                CreatedBy  = uname,
                ModifiedBy = uname
            };

            var ctx = new Models.ICCData();

            ctx.NewsItems.InsertOnSubmit(item);

            ctx.SubmitChanges();
            return(true);
        }