Exemplo n.º 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();
 }
Exemplo n.º 2
0
 partial void DeleteMangaList(MangaList instance);
Exemplo n.º 3
0
 partial void UpdateMangaList(MangaList instance);
Exemplo n.º 4
0
 partial void InsertMangaList(MangaList instance);
Exemplo n.º 5
0
		private void detach_MangaLists(MangaList entity)
		{
			this.SendPropertyChanging();
			entity.UserStatus = null;
		}
Exemplo n.º 6
0
		private void attach_MangaLists(MangaList entity)
		{
			this.SendPropertyChanging();
			entity.User = this;
		}