238f2e555f
This reverts commit 27b47afa09
.
12 lines
361 B
Dart
12 lines
361 B
Dart
import 'CourseStatus.dart';
|
|
import 'Student.dart';
|
|
|
|
extension StudentCourseStatus on Student {
|
|
String getCourseStatus(String course) {
|
|
if (courses.contains(course)) {
|
|
return "Студент присутствует на этих курсах";
|
|
} else {
|
|
return "Студент отсутствует на этих курсах";
|
|
}
|
|
}
|
|
} |