Advertisement
MarkGora

Untitled

Sep 15th, 2019
629
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace Simulator
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. Console.WriteLine("Enter number of clerk:");
  14. int _numberClerks = int.Parse(Console.ReadLine());
  15.  
  16. Console.WriteLine("Enter number of client:");
  17. int _numberClients = int.Parse(Console.ReadLine());
  18.  
  19. BL_Department bl = new BL_Department(_numberClients, _numberClerks);
  20. bl.Open_Department();
  21.  
  22. Console.ReadKey();
  23. }
  24. }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement