예제 #1
0
 public Task UpdateAsync(VoterCandidate entity)
 {
     throw new NotImplementedException();
 }
예제 #2
0
        public async Task AddAsync(VoterCandidate entity)
        {
            await _context.VotersCandidates.AddAsync(entity);

            await _context.SaveChangesAsync();
        }