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