Example #1
0
 // Lose Job
 public void loseJob()
 {
     if (this.employed != null)
     {
         this.employed = null;
     }
 }
Example #2
0
 // Find a job
 public Employed findJob(Building workplace)
 {
     return(this.employed = new Employed(this, workplace));
 }