Skip to content

tommyyeh0505/Automated-Course-Registration-System

Repository files navigation

Build Status Contributors MIT License


Logo

Automated Course Registration System

Created by Team M.E.A.T
Report Bug · Request Feature

Table of Contents

About The Project

The BCIT Interior Design Department currently has to manually enter all part-time student grades for each course every term which costed a significant amount of time compiling data in order to check if applicants have the correct prerequisites for each course. This process is very repetitive and inefficient, therefore, they want a system that can compile all the data from all attendance sheets generated from the Cognos system into a more user-friendly format.

Automated Course Registration System is a proposed web application which contains two parts: the Front-end and Back-end with a goal to reduce the number of manual student grade entries which helps simplify the course registration process and minimize any potential mistakes from manual entries.

Built With

Technologies used:

Contributors

Getting Started

Please follow these simple steps to get a running version on your local machine

Prerequisites

You will need to install these packages in order to get the application running

  • angular/cli
npm install @angular/cli
  • dotnet

Installation

  1. Clone the repo
git clone https://github.com/tommyyeh0505/Automated-Course-Registration-System
  1. Navigate to ClientApp folder
cd ClientApp
  1. Install NPM packages
npm install
  1. Run the Front-end, the website will be running on localhost:4200
ng serve

or

npm start
  1. From the root folder, navigate to API/ACRS folder
cd API/ACRS
  1. Run the Back-end by executing this command
dotnet run

Contributing

Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature)
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request with a description

License

Distributed under the MIT License. See LICENSE in the root folder for more information.

Contact

Eva Au - [email protected]

Tommy Yeh - [email protected]

Andy Tang - [email protected]

Mike Hoang - [email protected]

API Endpoints

URL Method Data Params URL Params
/api/auth/login POST {username, password} None
/api/auth/register POST {username, password} None
/api/auth/users/:username PUT {username, currentPassword, newPassword} username
/api/courses GET None None
/api/courses/:courseId GET None courseId
/api/courses/:courseId PUT {courseId, passingGrade, prerequisites} courseId
/api/courses POST {courseId, passingGrade, prerequisites} None
/api/courses/:courseId DELETE None courseId
/api/courses/:courseId/eligible GET None courseId
/api/courses/:courseId/ineligible GET None courseId
/api/grades GET None None
/api/grades/:gradeId GET None gradeId
/api/grades/filter/:courseId/:crn/:term GET None courseId, crn, term
/api/grades/:gradeId PUT {gradeId, studentId, courseId, crn, term, finalGrade, attempts} gradeId
/api/grades/ POST {studentId, courseId, crn, term, finalGrade, attempts} None
/api/grades/:gradeId DELETE None None
/api/students GET None None
/api/students/:studentId GET None studentId
/api/students/:studentId PUT {studentId, studentName} studentId
/api/students POST {studentId, studentName} studentId
/api/students/:studentId DELETE None studentId
/api/waitlists GET None None
/api/waitlists/:waitlistId GET None waitlistId
/api/waitlists/ POST {courseId, crn, term, studentId} None
/api/waitlists/:waitlistId DELETE None None
/api/waitlists/filter/:courseId/:crn/:term GET None courseId, crn, term
/api/waitlists/all DELETE None None