11 lines
333 B
Dart
11 lines
333 B
Dart
|
import 'Student.dart';
|
||
|
|
||
|
extension StudentCourseStatus on Student {
|
||
|
String getCourseStatus(String course) {
|
||
|
if (courses.contains(course)) {
|
||
|
return "Студент присутствует на этих курсах";
|
||
|
} else {
|
||
|
return "Студент отсутствует на этих курсах";
|
||
|
}
|
||
|
}
|
||
|
}
|