Пример #1
0
 private Command GetStudents(
     ScheduleService service,
     Action <string> writeln)
 => args =>
 {
     foreach (var student in service.FindStudents())
     {
         WriteStudentInfo(student, writeln);
         writeln("");
     }
 };