A hair salon owner may create Stylists in the database and save clients to them.
- Clone from github
- run dotnet restore in root directory
- use dotnet run to launch server
- navigate to localhost:5000 to view
Launch mysql in console. CREATE DATABASE() CREATE DATABASE hairSalon SHOW DATABASE USE hairSalon SELECT DATABASE(); CREATE TABLE stylists ( id serial PRIMARY KEY, name VARCHAR (255)) CREATE TABLE clients (id serial PRIMARY KEY, name VARCHAR (255) stylistId INT) DROP DATABASE hairSalon
Currently there are no Known bugs
If there any any bugs contact me at joebaranes333@gmail.com
C#, HTML, MYSQL
Copyright (c) 2019 Joe Barnes