Exemplo n.º 1
0
 public void RemovePlayer(FieldHockey cric)
 {
     if (cric == null)
     {
         throw new ArgumentNullException(nameof(cric));
     }
     _context.Hockey.Remove(cric);
 }
Exemplo n.º 2
0
 public void InsertPlayer(FieldHockey cric)
 {
     if (cric == null)
     {
         throw new ArgumentNullException(nameof(cric));
     }
     _context.Hockey.Add(cric);
 }
Exemplo n.º 3
0
 public void UpdatePlayer(FieldHockey cric)
 {
 }