Example #1
0
 public IEnumerable <Student> GetRStudents(
     [Parent] Department department,
     [Service] IClassroomService repository)
 {
     return(repository.GetStudents(department.Id));
 }