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