Exemple #1
0
 public async ValueTask RemoveEmployeeEvaluationScoreAsync(EmployeeEvaluationScore employeeEvaluationScore)
 {
     _repository.EmployeeEvaluationScores.Remove(employeeEvaluationScore);
     await _repository.SaveChangesAsync();
 }
Exemple #2
0
        public async ValueTask AddEmployeeEvaluationScoreAsync(EmployeeEvaluationScore employeeEvaluationScore)
        {
            await _repository.EmployeeEvaluationScores.AddAsync(employeeEvaluationScore);

            await _repository.SaveChangesAsync();
        }