Ejemplo n.º 1
0
        private void OpeningCollabo(object sender, EventArgs e)
        {
            ABIService.ABIServiceClient client = new ABIService.ABIServiceClient("BasicHttpBinding_IABIService");
            Console.WriteLine("nom client : " + client.getName());
            Console.WriteLine("\nprenom : " + client.getFirstname());

            if (ctrlListCollaborateur == null)
            {
                ctrlListCollaborateur = new CtrlListCollaborateur();
            }
            else
            {
                ctrlListCollaborateur.Display();
            }
        }
Ejemplo n.º 2
0
 public void CloseCtrlListCollaborateur()
 {
     ctrlListCollaborateur = null;
 }