Example #1
0
 public static void AddMangaList(int tid, int uid, int stat, int score, int thomes, int chaps)
 {
     AnimeDataContext db = new AnimeDataContext();
     MangaList adan = new MangaList { MangaID = tid, UserID = uid, StatusID = stat, Score = score, ThomesRead = thomes, ChaptersRead = chaps};
     db.MangaLists.InsertOnSubmit(adan);
     db.SubmitChanges();
 }
Example #2
0
 partial void DeleteMangaList(MangaList instance);
Example #3
0
 partial void UpdateMangaList(MangaList instance);
Example #4
0
 partial void InsertMangaList(MangaList instance);
Example #5
0
		private void detach_MangaLists(MangaList entity)
		{
			this.SendPropertyChanging();
			entity.UserStatus = null;
		}
Example #6
0
		private void attach_MangaLists(MangaList entity)
		{
			this.SendPropertyChanging();
			entity.User = this;
		}