Last active
December 11, 2018 22:02
-
-
Save TarasMartynyuk/13f6883d90d2fcdcb3f92c5d6d306e75 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
group: Schedule | |
Lektor = { | |
Id:number, Name:string, WorkPlace:string, Phone:string, Sci:string | |
0, Usch, Nowhere, 0501110022, NoDegree | |
1, AnotherName, StillNowhere, 0501110044, YetAnotherNoDegree | |
2, Rock, Somewhere, 0501110033, SomeDegree | |
} | |
Course = { | |
id:number, Name:string | |
0, Db | |
1, java | |
2, IR | |
} | |
Group = { | |
id:number, faculty:string, cathedra:string, year:number, studentsCount:number | |
0, FI, ComputerScience, 1, 20 | |
1, FI, ComputerScience, 1, 20 | |
2, FI, ComputerScience, 1, 20 | |
3, FI, ComputerScience, 1, 20 | |
4, FI, ComputerScience, 1, 20 | |
5, Phys, ComputerScience, 1, 20 | |
6, Phys, ComputerScience, 2, 20 | |
} | |
Schedule = { | |
lkId:number, csId:number, grId:number | |
0, 0, 0 | |
0, 1, 1 | |
0, 2, 2 | |
1, 1, 3 | |
1, 1, 4 | |
2, 2, 2 | |
2, 2, 5 | |
2, 2, 6 | |
0, 0, 5 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment