コード例 #1
0
ファイル: Accueil.cs プロジェクト: khalifandiaye/pharmac
        //Client cl;
        //Preparateur prep;
        public Accueil()
        {
            InitializeComponent();

            work = new CL_WORK_COMPONENT();
            work.SetAuthentification("Client");
        }
コード例 #2
0
ファイル: Pharmacien.cs プロジェクト: khalifandiaye/pharmac
 public Pharmacien(string username)
 {
     InitializeComponent();
     this.username = username;
     work = new CL_WORK_COMPONENT();
     work.SetAuthentification("Pharmacien");
 }
コード例 #3
0
ファイル: Client.cs プロジェクト: khalifandiaye/pharmac
 public Client(string username)
 {
     InitializeComponent();
     this.username = username;
     work = new CL_WORK_COMPONENT();
     work.SetAuthentification("Client");
     Recherche_Client();
 }