private static void ConsultantAction(CallCenter center, string name, ConsoleColor color) { Random random = new Random(); while (true) { IncomingCall call = center.Answer(name); if (call != null) { Console.ForegroundColor = color; Log($"Call #{call.Id} from {call.ClientId} is answered by {call.Consultant}."); Console.ForegroundColor = ConsoleColor.Gray; Thread.Sleep(random.Next(1000, 10000)); center.End(call); Console.ForegroundColor = color; Log($"Call #{call.Id} from {call.ClientId} is ended by {call.Consultant}."); Console.ForegroundColor = ConsoleColor.Gray; Thread.Sleep(random.Next(500, 1000)); } else { Thread.Sleep(100); } } }
public int Call(int clientId) { IncomingCall call = new IncomingCall() { Id = ++_counter, ClientId = clientId, CallTime = DateTime.Now }; Calls.Enqueue(call); return(Calls.Count); }
public void End(IncomingCall call) { call.EndTime = DateTime.Now; }