Exemplo n.º 1
0
 public IActionResult mentorenrolledcourses(string email)
 {
     try
     {
         var result = repository.GetMentorEnrolledCourses(email);
         return(Ok(result));
     }
     catch (Exception)
     {
         throw;
     }
 }