public async Task DeleteVoterAsync(int id)
 {
     await VoterRepository.DeleteVoterAsync(id);
 }
Exemple #2
0
 public async Task DeleteVoterAsync(VoterModel voter)
 {
     await _voterRepository.DeleteVoterAsync(voter);
 }