Esempio n. 1
0
 public EmployeController(IEmployeService employeService, IServiceService serviceService, IPersonneService personneService, IAdresseService adresseService, IDroitService droitService, ITEmployeService temployeService, IAffectationServiceService affectationService, IUtilisateurService utilisateurService)
 {
     this._employeService     = employeService;
     this._serviceService     = serviceService;
     this._adresseService     = adresseService;
     this._personneService    = personneService;
     this._droitService       = droitService;
     this._temployeService    = temployeService;
     this._affectationService = affectationService;
     this._utilisateurService = utilisateurService;
     this._service            = "Ressources Humaines";
 }
Esempio n. 2
0
 public GestionDroitController(IDroitService droitService, IEmployeService employeService)
 {
     this._droitService   = droitService;
     this._employeService = employeService;
 }