public async Task <List <Course> > GetCoursesForDept(string name) { _logger.LogInformation("Begin CoursesController GET All Courses For Department"); var items = await _dbClient.GetCoursesForDept(name); _logger.LogInformation("Finish CoursesController GET All Courses For Department"); return(items); }