Exemplo n.º 1
0
 public void setCurrentUser(Employee currentUser)
 {
     this.currentUser = currentUser;
 }
Exemplo n.º 2
0
 public void signUp(string username, string password, string role)
 {
     Employee newEmp = new Employee(username, password, role);
 }
Exemplo n.º 3
0
 public void logOut()
 {
     this.currentUser = null;
 }