Skip to content

joelfuller2016/BabySitter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

BabySitter Kata

Information regarding the Babysitter Payment Kata here.

Prerequisites

  • Familiarity and general knowledge of how to clone a repository and use Git.

Run Tests

  • Find path of mstest.exe [MSTest.exe path]
  • Find the path of the downloaded files that contain program.cs [Program path]
- [MSTest.exe path]\MSTest.exe /container:[Program path]/*.dll

Run Console Application

  • Find path of .Net Framwwork on local machine that contains the file csc.exe [.Net Path]
  • Find the path of the downloaded files that contain program.cs [Program path]

To build the Application execute the following command:

- [.Net Path]\csc.exe -out:myBabySitterApp.exe [Program path]\*.cs

To execute the Application run the following command:

- [Program path]\myBabySitterApp.exe 

Requirements

The babysitter:

  • starts no earlier than 5:00PM
  • leaves no later than 4:00AM
  • only babysits for one family per night
  • gets paid for full hours (no fractional hours)
  • should be prevented from mistakes when entering times (e.g. end time before start time, or outside of allowable work hours)

The job:

  • Pays different rates for each family (based on bedtimes, kids and pets, etc...)
  • Family A pays $15 per hour before 11pm, and $20 per hour the rest of the night
  • Family B pays $12 per hour before 10pm, $8 between 10 and 12, and $16 the rest of the night
  • Family C pays $21 per hour before 9pm, then $15 the rest of the night
  • The time ranges are the same as the babysitter (5pm through 4am)

Deliverable:

  • Calculate total pay, based on babysitter start and end time, and a family.

Created By: Joel Fuller

[email protected]

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages