Beispiel #1
0
 public Score Update(Score scoreChanges)
 {
     throw new NotImplementedException();
 }
Beispiel #2
0
 public Score Add(Score score)
 {
     context.Scores.Add(score);
     context.SaveChanges();
     return(score);
 }