c-grigsby / registration-api

Server-side .NET application for the Course Registration app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

War Chicken

Course Registration Back-end

dotnet language

This server-side application is the back-end to the course registration application
Coursework for CCU


Project Specifications

  • Developed within .NET Core web API framework
  • REST API to query course information via departments, core goals, & semesters
  • Persists data via MySQL
  • create, read, update, delete (CRUD) services
  • xUnit.net for testing
  • Controller, Service, and Repository layers

This application utilizes a .env file to host environment variables. To configure:

  • connectionString={MySQLConnectionString}

Changelog


API References

GetCourses

GetCourseByName

GetCoursesByDept

CreateCourse

  • Method: POST
  • URL: https://localhost:5001/courses
  • Body: JSON object with the values for {Name, Title, Credits, Description, Department}
  • Description: Creates a new course in the repository

UpdateCourse

  • Method: PUT
  • URL: https://localhost:5001/courses
  • Body: JSON object with the values for {Name, Title, Credits, Description, Department}
  • Description: Updates a course within the repository

DeleteCourse

GetGoalsByCourse

GetCourseOfferingsBySemester


About

Server-side .NET application for the Course Registration app


Languages

Language:C# 100.0%