Example #1
0
 public string GetId()
 {
     while (true)
     {
         Console.Write("Mã phân công: ");
         string id = Console.ReadLine();
         if (id.Length < 9)
         {
             Console.WriteLine("Mã phân công gồm 10 kí tự");
         }
         else if (handler.GetIndex(id) < 0)
         {
             Console.WriteLine("Phân công không tồn tại");
         }
         else
         {
             return(id);
         }
     }
 }