示例#1
0
 public void Delete(Concert concert)
 {
     this.concerts.Delete(concert);
     this.concerts.SaveChanges();
 }
示例#2
0
 public void UpdateConcert(Concert concert)
 {
     this.concerts.Update(concert);
     this.concerts.SaveChanges();
 }
示例#3
0
 public void AddConcert(Concert concert)
 {
     this.concerts.Add(concert);
     this.concerts.SaveChanges();
 }