Skip to content
Snippets Groups Projects
Staff.java 724 B
public class Staff {

    public Employee faangPup() {
        return new Employee(
          "Steve",
          "Company Pup",
          "Provides Moral Support",
          "pup.jpg",
          "the goodest boi"
        );
    }

    public Employee cjobes() {
      return new Employee(
        "Colton",
        "Lead Naps Analyst",
        "What do you mean I'm not valuable to the company?",
        "colton.jpg",
        "Colton smiling with a forest in the background"
      );
    }

    public Employee antonio6() {
	    return new Employee(
        "Antonio",
        "Teaching Assistant",
        "Tries to help",
        "void.jpg",
	"My favorite plushie void the demodog chillin on the floor"
      );
    }
}