package exo2.personnel;

import exo2.entreprise.IService;
import exo2.service.IPersonnel;

/**
 * @author ouziri
 * @version 1.0
 *
 */

public abstract class Personnel implements IPersonnel {

	private int matricule;
	private String nom;
	private double salaireEmbauche;

	public Personnel(int matricule, String nom, double salaire) {
		this.matricule = matricule;
		this.nom = nom;
		this.salaireEmbauche = salaire;
	}

	public int getMatricule() {
		return matricule;
	}

	public String getNom() {
		return nom;
	}

	public double getSalaireEmbauche() {
		return salaireEmbauche;
	}

}
