public async Task DeleteClubCard(int id) { var card = await _cardRepository.GetClubCard(id); await _cardRepository.DeleteClubCard(card); }