public EmployeesController(IPersona personaRepository)
 {
     this._IPersona                   = personaRepository;
     this.IPeopleDomicilio            = new peopleDomicilioBL();
     this.IPeopleTravel               = new peopleTravelBL();
     this._IMaInstanciaRepository     = new MaInstanciaBL();
     this._IMaTipoDocumentoRepository = new maTipoDocumentoBL();
     this._IPeopleModalidadRepository = new peopleModalidadBL();
     this._IPeopleChargeRepository    = new peopleChargeBL();
 }
 public CargoController(IPeopleCharge personaChargeRepository)
 {
     this.personaChargeRepository = personaChargeRepository;
 }
 public ExperienciasController(IPeopleJobs peopleJobsRepository, IPeopleTravel IPeopleTravel, IPeopleCharge IPeopleCharge)
 {
     this.peopleJobsRepository = peopleJobsRepository;
     this.IPeopleTravel        = IPeopleTravel;
     this.IPeopleCharge        = IPeopleCharge;
 }