Exemplo n.º 1
0
 public async Task <Enrollment> GetEnrollmentByIdAsync(int enrollmentId)
 {
     return(_mapper.Map <Enrollment>(
                await _enrollmentRepository.GetEnrollmentByIdAsync(enrollmentId)
                ));
 }