Skip to content

pzanchuk/mytests

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hair Salon

03.01.2019

By Pavel Zanchuk

Description

This program allows user to keep track of Clients and Stylists.

Specifications

  • Program will accept user input for Stylist.
    • Example input: "Pavel".
    • Example output: "Pavel".
  • Program will accept user input for clients.
    • Example input: "Panatda".
    • Example output: "Panatda".
  • Program will display in browser information about client
    • Example input: click button "View all stylists" from home page, choose a stylist, from the list click on any client to show the details about that client.
    • Example output: info page about client will be shown.
  • Program will display in browser information for each stylist that is currently available from DB.
    • Example input: click button "View all stylists" from home page, click on any stylist.
    • Example output: list of assigned clients will popup if any clients were added to that stylist.

Setup/Installation Requirements

  • Navigate your web browser to https://github.com/pzanchuk/HairSalon.Solution
  • Click the green button "Clone or download" on the repository page.
  • To download the repository choose "Open in Desktop" or "Download Zip".
  • Alternatively, to clone the repository, type "git clone https://github.com/pzanchuk/HairSalon.Solution in the terminal". (Note!: git should be installed on your PC). For more information visit GitHub Help section Cloning a repository from GitHub: https://help.github.com/articles/cloning-a-repository-from-github/_
  • To run the project in browser: navigate to ../WordCounter.Solution/WordCounter and ran these lines to restore files "dotnet restore" and "dotnet build", then "dotnet run".(Note!: Mono and .NET Core SDK 1.1.4 must be installed on your machine". Open up web browser and connect to (http://localhost:5000/)
  • To create database(MySQL should be installed): open up terminal and type in next lines:(Database is also included if you'd like to import it.) CREATE DATABASE pavel_zanchuk; USE pavel_zanchuk; CREATE TABLE stylists (id serial PRIMARY KEY, name VARCHAR(255)); CREATE TABLE clients (id serial PRIMARY KEY, name VARCHAR(255), stylist_id INT);

Support and contact details

For support please contact: Pavel Zanchuk - buzzik@yahoo.com

Technologies Used

This program was created using C# and MySql

License

MIT License

Copyright (c) 2019 Pavel Zanchuk

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published