public async Task <bool> UpdateCandidate(Candidate candidate) { _cbtDbContext.Update(candidate); return(await Save()); }
public async Task <bool> UpdateTestScore(TestScore testScore) { _cbtDbContext.Update(testScore); return(await Save()); }