public bool Delete(int id) { var song = _repository.FindById(id); _repository.Delete(song); return(_repository.SaveChanges()); }