Exemplo n.º 1
0
 public async Task <IActionResult> GetUserEnrollment()
 {
     return(Ok(await userEnrollmentService.GetEnrollment()));
 }
Exemplo n.º 2
0
        public async Task <IActionResult> GetEnrollmentsAsync()
        {
            var enrollments = await _userEnrollmentService.GetEnrollment();

            return(Ok(enrollments));
        }