public bool Delete(Item item)
 {
     return(_iteamRepository.Delete(item));
 }
Esempio n. 2
0
 public bool Delete(int id)
 {
     return(_iteamRepository.Delete(id));
 }
Esempio n. 3
0
 public async Task Delete(Team player)
 {
     _players.Delete(player);
     await _players.Save();
 }