Beispiel #1
0
        //Client cl;
        //Preparateur prep;
        public Accueil()
        {
            InitializeComponent();

            work = new CL_WORK_COMPONENT();
            work.SetAuthentification("Client");
        }
Beispiel #2
0
 public Pharmacien(string username)
 {
     InitializeComponent();
     this.username = username;
     work = new CL_WORK_COMPONENT();
     work.SetAuthentification("Pharmacien");
 }
Beispiel #3
0
 public Client(string username)
 {
     InitializeComponent();
     this.username = username;
     work = new CL_WORK_COMPONENT();
     work.SetAuthentification("Client");
     Recherche_Client();
 }