public int GetCountOfDoctor()
 {
     return(DoctorsQueue.Count());
 }
 public Doctor GetDoctor()
 {
     return(DoctorsQueue.Dequeue());
 }