public Login(ITransportServer.Iface server)
 {
     InitializeComponent();
     StartPosition     = FormStartPosition.CenterScreen;
     _controller       = new ClientController(server);
     this.FormClosing += (a, b) => Application.Exit();
 }
 public ClientController(ITransportServer.Iface server)
 {
     _server          = server;
     _currentEmployee = null;
 }