Example #1
0
 public void Delete(Model.Tune T)
 {
     throw new NotImplementedException();
 }
Example #2
0
 public void Add(Model.Tune T)
 {
     // TBD: error checking for adding duplicate tune, or migration on table
     _dbContext.Tunes.Add(T);
     _dbContext.SaveChanges();
 }