From 05f1473fb98a06cad5ee321aa60804e869384319 Mon Sep 17 00:00:00 2001 From: "medhi.rodrigues" Date: Tue, 11 Mar 2025 17:53:18 +0100 Subject: [PATCH] CLASSE --- GSBapplication/src/Metier/Observation.java | 31 ++++++++ GSBapplication/src/Metier/famille.java | 38 ++++++++++ GSBapplication/src/Metier/praticien.java | 75 +++++++++++++++++++ .../src/Metier/visiteur_medicaux.java | 68 +++++++++++++++++ 4 files changed, 212 insertions(+) create mode 100644 GSBapplication/src/Metier/Observation.java create mode 100644 GSBapplication/src/Metier/famille.java create mode 100644 GSBapplication/src/Metier/praticien.java create mode 100644 GSBapplication/src/Metier/visiteur_medicaux.java diff --git a/GSBapplication/src/Metier/Observation.java b/GSBapplication/src/Metier/Observation.java new file mode 100644 index 0000000..5549025 --- /dev/null +++ b/GSBapplication/src/Metier/Observation.java @@ -0,0 +1,31 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template + */ +package Metier; + +/** + * + * @author medhi.rodrigues + */ +public class Observation { + /** + * observation = l'observation d'un médicament + */ + private String observation; + + + + //LES GUETTEUR + /** + * @return the observation + */ + public String getObservation() { + return observation; + } + + + + + +} diff --git a/GSBapplication/src/Metier/famille.java b/GSBapplication/src/Metier/famille.java new file mode 100644 index 0000000..bd889f4 --- /dev/null +++ b/GSBapplication/src/Metier/famille.java @@ -0,0 +1,38 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template + */ +package Metier; + +/** + * + * @author medhi.rodrigues + */ +public class famille { + /** + * l'identifiant permettant de connaitre la famille du médicament + */ + private String id; + + /** LE CONSTRUCTEUR DEFAULT + * + * @param id + */ + public famille(String id) { + this.id = id; + } + + // LES SETTEUR + /** + * @return the id + */ + public String getId() { + return id; + } + + @Override + public String toString() { + return "famille{" + "id=" + id + '}'; + } + +} diff --git a/GSBapplication/src/Metier/praticien.java b/GSBapplication/src/Metier/praticien.java new file mode 100644 index 0000000..1a98272 --- /dev/null +++ b/GSBapplication/src/Metier/praticien.java @@ -0,0 +1,75 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template + */ +package Metier; + +/** + * + * @author medhi.rodrigues + */ +public class praticien { + /** + * id = L'identifiant du praticien + * nom = le nom du praticien + * prenom = le prenom du praticien + * type_praticien = le type de praticien (ex : Médecine de Ville) + */ + private int id; + private String nom; + private String prenom; + private String type_praticien; + + + /** LE CONSTRUCTEUR DEFAULT + * + * @param id + * @param nom + * @param prenom + * @param type_praticien + */ + public praticien(int id, String nom, String prenom, String type_praticien) { + this.id = id; + this.nom = nom; + this.prenom = prenom; + this.type_praticien = type_praticien; + } + + + //LES GETTEUR + /** + * @return the id + */ + public int getId() { + return id; + } + + /** + * @return the nom + */ + public String getNom() { + return nom; + } + + /** + * @return the prenom + */ + public String getPrenom() { + return prenom; + } + + /** + * @return the type_praticien + */ + public String getType_praticien() { + return type_praticien; + } + + + @Override + public String toString() { + return "Praticien{" + "id=" + id + ", nom=" + nom + ", prenom=" + prenom + ", type_praticien=" + type_praticien + '}'; + } + + +} diff --git a/GSBapplication/src/Metier/visiteur_medicaux.java b/GSBapplication/src/Metier/visiteur_medicaux.java new file mode 100644 index 0000000..cd387ae --- /dev/null +++ b/GSBapplication/src/Metier/visiteur_medicaux.java @@ -0,0 +1,68 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template + */ +package Metier; + +/** + * + * @author medhi.rodrigues + */ +public class visiteur_medicaux { + /** + * id = l'identifiant du visiteur + * nom = le nom du visiteur + * prenom = le prenom du visiteur + * region = la region du visiteur + */ + private int id; + private String nom; + private String prenom; + private String region; + + /** LE CONSTRUCTEUR DEFAULT + * + * + * @param id + * @param nom + * @param prenom + * @param region + */ + public visiteur_medicaux(int id, String nom, String prenom, String region) { + this.id = id; + this.nom = nom; + this.prenom = prenom; + this.region = region; + } + + + //LES GETTEUR + /** + * @return the id + */ + public int getId() { + return id; + } + + /** + * @return the nom + */ + public String getNom() { + return nom; + } + + /** + * @return the prenom + */ + public String getPrenom() { + return prenom; + } + + /** + * @return the region + */ + public String getRegion() { + return region; + } + +}