Exemplo n.º 1
0
 public static void AddPublisher(string name, string url)
 {
     AnimeDataContext db = new AnimeDataContext();
     Publisher adt = new Publisher { PublisherName = name, PublisherPage = url};
     db.Publishers.InsertOnSubmit(adt);
     db.SubmitChanges();
 }
Exemplo n.º 2
0
 partial void DeletePublisher(Publisher instance);
Exemplo n.º 3
0
 partial void UpdatePublisher(Publisher instance);
Exemplo n.º 4
0
 partial void InsertPublisher(Publisher instance);