Пример #1
0
 public InvestigadorService(IRepository<Investigador> investigadorRepository,
     IUsuarioQuerying usuarioQuerying, IInvestigadorQuerying investigadorQuerying)
 {
     this.investigadorRepository = investigadorRepository;
     this.usuarioQuerying = usuarioQuerying;
     this.investigadorQuerying = investigadorQuerying;
 }
Пример #2
0
 public UsuarioService(IRepository<Rol> rolRepository, 
     IRepository<Usuario> usuarioRepository,
     IInvestigadorQuerying investigadorQuerying)
 {
     this.rolRepository = rolRepository;
     this.usuarioRepository = usuarioRepository;
     this.investigadorQuerying = investigadorQuerying;
 }
Пример #3
0
 public UsuarioService(IRepository<Rol> rolRepository, IRepository<Telefono> telefonoRepository, 
     IRepository<CorreoElectronico> correoElectronicoRepository,
     IRepository<Direccion> direccionRepository,
     IRepository<Usuario> usuarioRepository,
     IInvestigadorQuerying investigadorQuerying)
 {
     this.rolRepository = rolRepository;
     this.telefonoRepository = telefonoRepository;
     this.correoElectronicoRepository = correoElectronicoRepository;
     this.direccionRepository = direccionRepository;
     this.usuarioRepository = usuarioRepository;
     this.investigadorQuerying = investigadorQuerying;
 }