├── .gitattributes ├── .github └── workflows │ └── dotnet-core.yml ├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── Environments ├── Homolog │ ├── Dockerfile │ ├── deploy.sh │ ├── docker-compose.yml │ └── nginx.conf └── Production │ ├── Dockerfile │ ├── deploy.sh │ ├── docker-compose.yml │ └── nginx.conf ├── LICENSE ├── README.md ├── Speckoz.UniLinks ├── Speckoz.UniLinks.sln ├── UniLinks.API │ ├── Business │ │ ├── ClassBusiness.cs │ │ ├── CoordinatorBusiness.cs │ │ ├── CourseBusiness.cs │ │ ├── DisciplineBusiness.cs │ │ ├── Interfaces │ │ │ ├── IClassBusiness.cs │ │ │ ├── ICoordinatorBusiness.cs │ │ │ ├── ICourseBusiness.cs │ │ │ ├── IDisciplineBusiness.cs │ │ │ ├── ILessonBusiness.cs │ │ │ └── IStudentBusiness.cs │ │ ├── LessonBusiness.cs │ │ └── StudentBusiness.cs │ ├── Controllers │ │ ├── AuthController.cs │ │ ├── ClassesController.cs │ │ ├── CoursesController.cs │ │ ├── DisciplinesController.cs │ │ ├── LessonsController.cs │ │ ├── StatusController.cs │ │ └── StudentsController.cs │ ├── Data │ │ ├── Converters │ │ │ ├── ClassConverter.cs │ │ │ ├── Coordinator │ │ │ │ ├── AuthCoordinatorConverter.cs │ │ │ │ └── CoordinatorConverter.cs │ │ │ ├── CourseConverter.cs │ │ │ ├── DisciplineConverter.cs │ │ │ ├── Interfaces │ │ │ │ └── IParser.cs │ │ │ ├── Lesson │ │ │ │ ├── LessonConverter.cs │ │ │ │ └── LessonDisciplineConverter.cs │ │ │ └── Student │ │ │ │ ├── AuthStudentConverter.cs │ │ │ │ ├── StudentConverter.cs │ │ │ │ └── StudentDisciplineConverter.cs │ │ ├── DataContext.cs │ │ └── DataSeeder.cs │ ├── Dockerfile │ ├── Filters │ │ └── ErrorResponseFilter.cs │ ├── Migrations │ │ ├── 20200604080602_AddWeekDayOnClassModel.Designer.cs │ │ ├── 20200604080602_AddWeekDayOnClassModel.cs │ │ └── DataContextModelSnapshot.cs │ ├── Models │ │ ├── Auxiliary │ │ │ └── EmailFromBody.cs │ │ ├── ClassModel.cs │ │ ├── CoordinatorModel.cs │ │ ├── CourseModel.cs │ │ ├── DisciplineModel.cs │ │ ├── LessonModel.cs │ │ └── StudentModel.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Repository │ │ ├── BaseRepository.cs │ │ ├── ClassRepository.cs │ │ ├── CoordinatorRepository.cs │ │ ├── CourseRepository.cs │ │ ├── DisciplineRepository.cs │ │ ├── Interfaces │ │ │ ├── IClassRepository.cs │ │ │ ├── ICoordinatorRepository.cs │ │ │ ├── ICourseRepository.cs │ │ │ ├── IDisciplineRepository.cs │ │ │ ├── ILessonRepository.cs │ │ │ └── IStudentRepository.cs │ │ ├── LessonRepository.cs │ │ └── StudentRepository.cs │ ├── Services │ │ ├── CollabAPIService.cs │ │ ├── Email │ │ │ ├── ConfigEmailModel.cs │ │ │ ├── Interfaces │ │ │ │ └── ISendEmailService.cs │ │ │ └── SendEmailService.cs │ │ ├── GenerateTokenService.cs │ │ └── SecurityService.cs │ ├── Startup.cs │ ├── UniLinks.API.csproj │ ├── Utils │ │ ├── GuidFormat.cs │ │ └── TextPlainInputFormatter.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── UniLinks.Client.Site │ ├── Controllers │ │ ├── Coordinator │ │ │ ├── ClassesController.cs │ │ │ ├── CourseController.cs │ │ │ ├── DisciplinesController.cs │ │ │ ├── LessonsController.cs │ │ │ └── StudentsController.cs │ │ ├── CoordinatorController.cs │ │ ├── HomeController.cs │ │ └── StudentController.cs │ ├── Dockerfile │ ├── Models │ │ └── Auxiliary │ │ │ └── DisciplinesAuxModel.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Services │ │ ├── AuthService.cs │ │ ├── Coordinator │ │ │ ├── ClassService.cs │ │ │ ├── CourseService.cs │ │ │ ├── DisciplineService.cs │ │ │ ├── LessonService.cs │ │ │ ├── StatusService.cs │ │ │ └── StudentsService.cs │ │ ├── DisciplinesPeriodsService.cs │ │ └── Student │ │ │ ├── ClassService.cs │ │ │ └── LessonService.cs │ ├── Startup.cs │ ├── UniLinks.Client.Site.csproj │ ├── Views │ │ ├── Coordinator │ │ │ ├── Auth.cshtml │ │ │ ├── Classes │ │ │ │ ├── Add.cshtml │ │ │ │ ├── Index.cshtml │ │ │ │ └── Update.cshtml │ │ │ ├── Course │ │ │ │ ├── AddCourse.cshtml │ │ │ │ ├── CourseNotFound.cshtml │ │ │ │ ├── Index.cshtml │ │ │ │ └── UpdateCourse.cshtml │ │ │ ├── Disciplines │ │ │ │ ├── Add.cshtml │ │ │ │ ├── Index.cshtml │ │ │ │ └── Update.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── Lessons │ │ │ │ ├── Add.cshtml │ │ │ │ ├── Index.cshtml │ │ │ │ └── Update.cshtml │ │ │ └── Students │ │ │ │ ├── Add.cshtml │ │ │ │ ├── Index.cshtml │ │ │ │ └── Update.cshtml │ │ ├── Home │ │ │ ├── Index.cshtml │ │ │ ├── NoAuth.cshtml │ │ │ ├── PageInternalError.cshtml │ │ │ └── PageNotFound.cshtml │ │ ├── Shared │ │ │ ├── EmptyLayout.cshtml │ │ │ ├── ErrorsLayout.cshtml │ │ │ ├── Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── Student │ │ │ ├── Auth.cshtml │ │ │ ├── Classes.cshtml │ │ │ └── Index.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── choices.css │ │ ├── datatables.min.css │ │ ├── materialdesignicons.min.css │ │ ├── mdb.min.css │ │ ├── site.css │ │ ├── theme.dark.css │ │ └── theme.light.css │ │ ├── favicon.ico │ │ ├── fonts │ │ └── materialdesignicons-webfont.ttf │ │ ├── img │ │ ├── 404_error.png │ │ ├── 500_error.jpg │ │ ├── classes.png │ │ ├── collabRec.jpg │ │ ├── coord_login.jpg │ │ ├── disciplines.jpg │ │ ├── he4rtdevs.png │ │ ├── header.jpg │ │ ├── lessons.png │ │ ├── students.png │ │ └── user_login.jpg │ │ └── js │ │ ├── Notifier.js │ │ ├── bootstrap.min.js │ │ ├── choices.js │ │ ├── datatables.min.js │ │ ├── jquery.min.js │ │ ├── mdb.min.js │ │ ├── popper.min.js │ │ └── site.js └── UniLinks.Dependencies │ ├── Attributes │ └── AuthorizesAttribute.cs │ ├── Data │ └── VO │ │ ├── Class │ │ └── ClassVO.cs │ │ ├── Coordinator │ │ ├── AuthCoordinatorVO.cs │ │ ├── CoordinatorVO.cs │ │ └── StatusVO.cs │ │ ├── CourseVO.cs │ │ ├── DisciplineVO.cs │ │ ├── ErrorResponseVO.cs │ │ ├── Lesson │ │ ├── LessonDisciplineVO.cs │ │ └── LessonVO.cs │ │ └── Student │ │ ├── AuthStudentVO.cs │ │ ├── StudentDisciplineVO.cs │ │ └── StudentVO.cs │ ├── Enums │ ├── UserTypeEnum.cs │ └── WeekDaysEnum.cs │ ├── Helper │ └── DataHelper.cs │ ├── Models │ ├── Auxiliary │ │ ├── LoginRequestModel.cs │ │ └── LoginStudentRequestModel.cs │ └── ResultModel.cs │ └── UniLinks.Dependencies.csproj ├── assets └── UniLinks.pdf └── email.html /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/dotnet-core.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/.github/workflows/dotnet-core.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Environments/Homolog/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Environments/Homolog/Dockerfile -------------------------------------------------------------------------------- /Environments/Homolog/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Environments/Homolog/deploy.sh -------------------------------------------------------------------------------- /Environments/Homolog/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Environments/Homolog/docker-compose.yml -------------------------------------------------------------------------------- /Environments/Homolog/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Environments/Homolog/nginx.conf -------------------------------------------------------------------------------- /Environments/Production/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Environments/Production/Dockerfile -------------------------------------------------------------------------------- /Environments/Production/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Environments/Production/deploy.sh -------------------------------------------------------------------------------- /Environments/Production/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Environments/Production/docker-compose.yml -------------------------------------------------------------------------------- /Environments/Production/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Environments/Production/nginx.conf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/README.md -------------------------------------------------------------------------------- /Speckoz.UniLinks/Speckoz.UniLinks.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/Speckoz.UniLinks.sln -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Business/ClassBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Business/ClassBusiness.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Business/CoordinatorBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Business/CoordinatorBusiness.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Business/CourseBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Business/CourseBusiness.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Business/DisciplineBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Business/DisciplineBusiness.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Business/Interfaces/IClassBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Business/Interfaces/IClassBusiness.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Business/Interfaces/ICoordinatorBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Business/Interfaces/ICoordinatorBusiness.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Business/Interfaces/ICourseBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Business/Interfaces/ICourseBusiness.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Business/Interfaces/IDisciplineBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Business/Interfaces/IDisciplineBusiness.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Business/Interfaces/ILessonBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Business/Interfaces/ILessonBusiness.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Business/Interfaces/IStudentBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Business/Interfaces/IStudentBusiness.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Business/LessonBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Business/LessonBusiness.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Business/StudentBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Business/StudentBusiness.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Controllers/AuthController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Controllers/AuthController.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Controllers/ClassesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Controllers/ClassesController.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Controllers/CoursesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Controllers/CoursesController.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Controllers/DisciplinesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Controllers/DisciplinesController.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Controllers/LessonsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Controllers/LessonsController.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Controllers/StatusController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Controllers/StatusController.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Controllers/StudentsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Controllers/StudentsController.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Data/Converters/ClassConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Data/Converters/ClassConverter.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Data/Converters/Coordinator/AuthCoordinatorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Data/Converters/Coordinator/AuthCoordinatorConverter.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Data/Converters/Coordinator/CoordinatorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Data/Converters/Coordinator/CoordinatorConverter.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Data/Converters/CourseConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Data/Converters/CourseConverter.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Data/Converters/DisciplineConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Data/Converters/DisciplineConverter.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Data/Converters/Interfaces/IParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Data/Converters/Interfaces/IParser.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Data/Converters/Lesson/LessonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Data/Converters/Lesson/LessonConverter.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Data/Converters/Lesson/LessonDisciplineConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Data/Converters/Lesson/LessonDisciplineConverter.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Data/Converters/Student/AuthStudentConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Data/Converters/Student/AuthStudentConverter.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Data/Converters/Student/StudentConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Data/Converters/Student/StudentConverter.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Data/Converters/Student/StudentDisciplineConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Data/Converters/Student/StudentDisciplineConverter.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Data/DataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Data/DataContext.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Data/DataSeeder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Data/DataSeeder.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Dockerfile -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Filters/ErrorResponseFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Filters/ErrorResponseFilter.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Migrations/20200604080602_AddWeekDayOnClassModel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Migrations/20200604080602_AddWeekDayOnClassModel.Designer.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Migrations/20200604080602_AddWeekDayOnClassModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Migrations/20200604080602_AddWeekDayOnClassModel.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Migrations/DataContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Migrations/DataContextModelSnapshot.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Models/Auxiliary/EmailFromBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Models/Auxiliary/EmailFromBody.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Models/ClassModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Models/ClassModel.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Models/CoordinatorModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Models/CoordinatorModel.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Models/CourseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Models/CourseModel.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Models/DisciplineModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Models/DisciplineModel.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Models/LessonModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Models/LessonModel.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Models/StudentModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Models/StudentModel.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Program.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Repository/BaseRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Repository/BaseRepository.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Repository/ClassRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Repository/ClassRepository.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Repository/CoordinatorRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Repository/CoordinatorRepository.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Repository/CourseRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Repository/CourseRepository.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Repository/DisciplineRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Repository/DisciplineRepository.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Repository/Interfaces/IClassRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Repository/Interfaces/IClassRepository.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Repository/Interfaces/ICoordinatorRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Repository/Interfaces/ICoordinatorRepository.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Repository/Interfaces/ICourseRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Repository/Interfaces/ICourseRepository.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Repository/Interfaces/IDisciplineRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Repository/Interfaces/IDisciplineRepository.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Repository/Interfaces/ILessonRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Repository/Interfaces/ILessonRepository.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Repository/Interfaces/IStudentRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Repository/Interfaces/IStudentRepository.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Repository/LessonRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Repository/LessonRepository.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Repository/StudentRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Repository/StudentRepository.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Services/CollabAPIService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Services/CollabAPIService.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Services/Email/ConfigEmailModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Services/Email/ConfigEmailModel.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Services/Email/Interfaces/ISendEmailService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Services/Email/Interfaces/ISendEmailService.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Services/Email/SendEmailService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Services/Email/SendEmailService.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Services/GenerateTokenService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Services/GenerateTokenService.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Services/SecurityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Services/SecurityService.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Startup.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/UniLinks.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/UniLinks.API.csproj -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Utils/GuidFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Utils/GuidFormat.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/Utils/TextPlainInputFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/Utils/TextPlainInputFormatter.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/appsettings.Development.json -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.API/appsettings.json -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Controllers/Coordinator/ClassesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Controllers/Coordinator/ClassesController.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Controllers/Coordinator/CourseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Controllers/Coordinator/CourseController.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Controllers/Coordinator/DisciplinesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Controllers/Coordinator/DisciplinesController.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Controllers/Coordinator/LessonsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Controllers/Coordinator/LessonsController.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Controllers/Coordinator/StudentsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Controllers/Coordinator/StudentsController.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Controllers/CoordinatorController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Controllers/CoordinatorController.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Controllers/StudentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Controllers/StudentController.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Dockerfile -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Models/Auxiliary/DisciplinesAuxModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Models/Auxiliary/DisciplinesAuxModel.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Program.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Properties/launchSettings.json -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Services/AuthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Services/AuthService.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Services/Coordinator/ClassService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Services/Coordinator/ClassService.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Services/Coordinator/CourseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Services/Coordinator/CourseService.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Services/Coordinator/DisciplineService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Services/Coordinator/DisciplineService.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Services/Coordinator/LessonService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Services/Coordinator/LessonService.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Services/Coordinator/StatusService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Services/Coordinator/StatusService.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Services/Coordinator/StudentsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Services/Coordinator/StudentsService.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Services/DisciplinesPeriodsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Services/DisciplinesPeriodsService.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Services/Student/ClassService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Services/Student/ClassService.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Services/Student/LessonService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Services/Student/LessonService.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Startup.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/UniLinks.Client.Site.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/UniLinks.Client.Site.csproj -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Views/Coordinator/Auth.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Views/Coordinator/Auth.cshtml -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Views/Coordinator/Classes/Add.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Views/Coordinator/Classes/Add.cshtml -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Views/Coordinator/Classes/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Views/Coordinator/Classes/Index.cshtml -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Views/Coordinator/Classes/Update.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Views/Coordinator/Classes/Update.cshtml -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Views/Coordinator/Course/AddCourse.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Views/Coordinator/Course/AddCourse.cshtml -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Views/Coordinator/Course/CourseNotFound.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Views/Coordinator/Course/CourseNotFound.cshtml -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Views/Coordinator/Course/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Views/Coordinator/Course/Index.cshtml -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Views/Coordinator/Course/UpdateCourse.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Views/Coordinator/Course/UpdateCourse.cshtml -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Views/Coordinator/Disciplines/Add.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Views/Coordinator/Disciplines/Add.cshtml -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Views/Coordinator/Disciplines/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Views/Coordinator/Disciplines/Index.cshtml -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Views/Coordinator/Disciplines/Update.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Views/Coordinator/Disciplines/Update.cshtml -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Views/Coordinator/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Views/Coordinator/Index.cshtml -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Views/Coordinator/Lessons/Add.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Views/Coordinator/Lessons/Add.cshtml -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Views/Coordinator/Lessons/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Views/Coordinator/Lessons/Index.cshtml -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Views/Coordinator/Lessons/Update.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Views/Coordinator/Lessons/Update.cshtml -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Views/Coordinator/Students/Add.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Views/Coordinator/Students/Add.cshtml -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Views/Coordinator/Students/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Views/Coordinator/Students/Index.cshtml -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Views/Coordinator/Students/Update.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Views/Coordinator/Students/Update.cshtml -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Views/Home/NoAuth.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Views/Home/NoAuth.cshtml -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Views/Home/PageInternalError.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Views/Home/PageInternalError.cshtml -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Views/Home/PageNotFound.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Views/Home/PageNotFound.cshtml -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Views/Shared/EmptyLayout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Views/Shared/EmptyLayout.cshtml -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Views/Shared/ErrorsLayout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Views/Shared/ErrorsLayout.cshtml -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Views/Shared/Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Views/Shared/Layout.cshtml -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Views/Student/Auth.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Views/Student/Auth.cshtml -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Views/Student/Classes.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Views/Student/Classes.cshtml -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Views/Student/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Views/Student/Index.cshtml -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/appsettings.Development.json -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/appsettings.json -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/css/bootstrap.min.css -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/css/choices.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/css/choices.css -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/css/datatables.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/css/datatables.min.css -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/css/materialdesignicons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/css/materialdesignicons.min.css -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/css/mdb.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/css/mdb.min.css -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/css/site.css -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/css/theme.dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/css/theme.dark.css -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/css/theme.light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/css/theme.light.css -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/fonts/materialdesignicons-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/fonts/materialdesignicons-webfont.ttf -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/img/404_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/img/404_error.png -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/img/500_error.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/img/500_error.jpg -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/img/classes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/img/classes.png -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/img/collabRec.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/img/collabRec.jpg -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/img/coord_login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/img/coord_login.jpg -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/img/disciplines.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/img/disciplines.jpg -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/img/he4rtdevs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/img/he4rtdevs.png -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/img/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/img/header.jpg -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/img/lessons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/img/lessons.png -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/img/students.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/img/students.png -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/img/user_login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/img/user_login.jpg -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/js/Notifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/js/Notifier.js -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/js/bootstrap.min.js -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/js/choices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/js/choices.js -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/js/datatables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/js/datatables.min.js -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/js/jquery.min.js -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/js/mdb.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/js/mdb.min.js -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/js/popper.min.js -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Client.Site/wwwroot/js/site.js -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Dependencies/Attributes/AuthorizesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Dependencies/Attributes/AuthorizesAttribute.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Dependencies/Data/VO/Class/ClassVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Dependencies/Data/VO/Class/ClassVO.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Dependencies/Data/VO/Coordinator/AuthCoordinatorVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Dependencies/Data/VO/Coordinator/AuthCoordinatorVO.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Dependencies/Data/VO/Coordinator/CoordinatorVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Dependencies/Data/VO/Coordinator/CoordinatorVO.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Dependencies/Data/VO/Coordinator/StatusVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Dependencies/Data/VO/Coordinator/StatusVO.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Dependencies/Data/VO/CourseVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Dependencies/Data/VO/CourseVO.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Dependencies/Data/VO/DisciplineVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Dependencies/Data/VO/DisciplineVO.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Dependencies/Data/VO/ErrorResponseVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Dependencies/Data/VO/ErrorResponseVO.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Dependencies/Data/VO/Lesson/LessonDisciplineVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Dependencies/Data/VO/Lesson/LessonDisciplineVO.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Dependencies/Data/VO/Lesson/LessonVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Dependencies/Data/VO/Lesson/LessonVO.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Dependencies/Data/VO/Student/AuthStudentVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Dependencies/Data/VO/Student/AuthStudentVO.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Dependencies/Data/VO/Student/StudentDisciplineVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Dependencies/Data/VO/Student/StudentDisciplineVO.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Dependencies/Data/VO/Student/StudentVO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Dependencies/Data/VO/Student/StudentVO.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Dependencies/Enums/UserTypeEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Dependencies/Enums/UserTypeEnum.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Dependencies/Enums/WeekDaysEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Dependencies/Enums/WeekDaysEnum.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Dependencies/Helper/DataHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Dependencies/Helper/DataHelper.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Dependencies/Models/Auxiliary/LoginRequestModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Dependencies/Models/Auxiliary/LoginRequestModel.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Dependencies/Models/Auxiliary/LoginStudentRequestModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Dependencies/Models/Auxiliary/LoginStudentRequestModel.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Dependencies/Models/ResultModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Dependencies/Models/ResultModel.cs -------------------------------------------------------------------------------- /Speckoz.UniLinks/UniLinks.Dependencies/UniLinks.Dependencies.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/Speckoz.UniLinks/UniLinks.Dependencies/UniLinks.Dependencies.csproj -------------------------------------------------------------------------------- /assets/UniLinks.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/assets/UniLinks.pdf -------------------------------------------------------------------------------- /email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Speckoz/UniLinks/HEAD/email.html --------------------------------------------------------------------------------