public void Delete(int id) { if (id > 0) { Footballer footballer = footballersRepository.GetById(id); footballersRepository.Delete(footballer); } }