Example #1
0
 public EmployeService(IEmployeRepository employeRepository, IUnitOfWork unitOfWork, IApplicationTraceService applicationTraceService, IAffectationServiceService affectationServiceService, IAdresseService adresseService, IUtilisateurService utilisateurService)
 {
     this._employeRepository         = employeRepository;
     this._applicationTraceService   = applicationTraceService;
     this._affectationServiceService = affectationServiceService;
     this._adresseService            = adresseService;
     this._utilisateurService        = utilisateurService;
     this._unitOfWork = unitOfWork;
 }
 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";
 }