Giter VIP home page Giter VIP logo

davidaghazi10.github.io's Introduction

Unit 10 OOP Homework: Template Engine - Employee Summary

Description

You will build a software engineering team generator command line application. The application will prompt the user for information about the team manager and then information about the team members. The user can input any number of team members, and they may be a mix of engineers and interns. This assignment must also pass all unit tests. When the user has completed building the team, the application will create an HTML file that displays a nicely formatted team roster based on the information provided by the user.

User Story

AS A manager
I WANT to generate a webpage that displays my team's basic info
SO THAT I have quick access to emails and GitHub profiles

Criteria

GIVEN manager has a team with information assigned to each individual member

WHEN prompted with a series of questions
THEN the user is required to enter all correlating information
WHEN the user is done filling out the information
THEN a team HTML file is generated with all the information gathered from the prompts

Requirements

  • Functional application
  • GitHub repository with a unique name and a README describing project.
  • User can use the CLI to generate an HTML page that displays information about their team.
  • All tests must pass

Classes

The project must have the these classes: Employee, Manager, Engineer, Intern. The tests for these classes in the tests directory must all pass.

The first class is an Employee parent class with the following properties and methods:

  • name
  • id
  • email
  • getName()
  • getId()
  • getEmail()
  • getRole() // Returns 'Employee'

The other three classes will extend Employee.

In addition to Employee's properties and methods, Manager will also have:

  • officeNumber
  • getRole() // Overridden to return 'Manager'

In addition to Employee's properties and methods, Engineer will also have:

  • github // GitHub username
  • getGithub()
  • getRole() // Overridden to return 'Engineer'

In addition to Employee's properties and methods, Intern will also have:

  • school
  • getSchool()
  • getRole() // Overridden to return 'Intern'

Roster output

The project must generate a team.html page in the output directory, that displays a nicely formatted team roster. Each team member should display the following in no particular order:

  • Name
  • Role
  • ID
  • Role-specific property (School, link to GitHub profile, or office number)

Preview

Image

davidaghazi10.github.io's People

Contributors

dghazi12 avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.