Ejemplo n.º 1
0
 public ActionResult AddNew(News news)
 {
     news.publictime = DateTime.Now;
     NewsService.GetInstance().Save(news);
     return RedirectToAction("news");
 }
Ejemplo n.º 2
0
 public void Save(News news)
 {
     if (news.id > 0)
         _newsDao.Update(news);else
     _newsDao.Insert(news);
 }
Ejemplo n.º 3
0
 partial void DeleteNews(News instance);
Ejemplo n.º 4
0
 partial void UpdateNews(News instance);
Ejemplo n.º 5
0
 partial void InsertNews(News instance);
Ejemplo n.º 6
0
		private void detach_News(News entity)
		{
			this.SendPropertyChanging();
			entity.Category = null;
		}
Ejemplo n.º 7
0
		private void attach_News(News entity)
		{
			this.SendPropertyChanging();
			entity.Category = this;
		}