Exemple #1
0
 public static void PrintChangePosition(Employee person, string parNewPosition)
 {
     if (person.DefinePosition(parNewPosition))
     {
         Console.WriteLine("position succesful changed");
     }
     else
     {
         Console.WriteLine("don't allow");
     }
 }