/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package Metier; public class Bibliothecaire { String ndc; String mdp; int id; BibliothecaireService bs = MetierFactory.getBibliothecaireService(); public Bibliothecaire(String ndc, String mdp) { this.ndc = ndc; this.mdp = mdp; } public String getNdc() { return ndc; } public void setNdc(String ndc) { this.ndc = ndc; } public String getMdp() { return mdp; } public void setMdp(String mdp) { this.mdp = mdp; } public int getId() { return id; } public void setId(int id) { this.id = id; } }