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

            await _repository.SaveChangesAsync();
        }