Beispiel #1
0
 public static bool AskForBonus(EnumPost worker, int hours)
 {
     if (hours > (int)worker)
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }
Beispiel #2
0
 public Accauntant(EnumPost post, int hours)
 {
     this.post  = post;
     this.hours = hours;
 }