コード例 #1
0
ファイル: InvestigadorService.cs プロジェクト: sesquiv/siacvu
 public InvestigadorService(IRepository<Investigador> investigadorRepository,
     IUsuarioQuerying usuarioQuerying, IInvestigadorQuerying investigadorQuerying)
 {
     this.investigadorRepository = investigadorRepository;
     this.usuarioQuerying = usuarioQuerying;
     this.investigadorQuerying = investigadorQuerying;
 }
コード例 #2
0
ファイル: UsuarioService.cs プロジェクト: giovanirguz/siacvu
 public UsuarioService(IRepository<Rol> rolRepository, 
     IRepository<Usuario> usuarioRepository,
     IInvestigadorQuerying investigadorQuerying)
 {
     this.rolRepository = rolRepository;
     this.usuarioRepository = usuarioRepository;
     this.investigadorQuerying = investigadorQuerying;
 }
コード例 #3
0
ファイル: UsuarioService.cs プロジェクト: sesquiv/siacvu
 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;
 }