Ejemplo n.º 1
0
 public void Delete(Model.Tune T)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 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();
 }