Add recomendations for meeting scheduler

This commit is contained in:
2025-10-31 13:29:43 -04:00
parent cf9949876d
commit b7fa7fcbe1
4 changed files with 93 additions and 61 deletions
+13
View File
@@ -62,4 +62,17 @@ public class Team
{
return $"{Event.Name} {(Identifier != null ? $"({Identifier})" : "")}";
}
public string StudentsFirstNames
{
get
{
return
string.Join(", ",
Students.Select(e =>
e.FirstName
+ (Captain != null && (Captain.Equals(e)) ? "(Cpt)" : ""))
);
}
}
}