Example #1
0
 public AnuncioService(IAnuncioRepository anuncioRepository, IAnuncioDetalleRepository anuncioDetalleRepository, IUsuarioRepository usuarioRepository, ITipoPropiedadRepository tipoPropiedadRepository,
                       IUbicacionRepository ubicacionRepository, IEvaluacionRepository evaluacionRepository, IImagenRepository imagenRepository, IMapper mapper)
 {
     _anuncioRepository        = anuncioRepository;
     _anuncioDetalleRepository = anuncioDetalleRepository;
     _usuarioRepository        = usuarioRepository;
     _ubicacionRepository      = ubicacionRepository;
     _imagenRepository         = imagenRepository;
     _evaluacionRepository     = evaluacionRepository;
     _tipoPropiedadRepository  = tipoPropiedadRepository;
     _mapper = mapper;
 }
Example #2
0
 public EvaluacionService(
     IEvaluacionRepository evaluacionRepository,
     ITipoEvaluacionRepository tipoEvaluacionRepository,
     IEventLogService eventLogService,
     IPosicionRepository posicionRepository,
     IStatusService statusService,
     IImagenEvaluacionRepository imagenEvaluacionRepository,
     IRespuestaService respuestaService, IEstandarService estandarService)
 {
     _evaluacionRepository       = evaluacionRepository;
     _tipoEvaluacionRepository   = tipoEvaluacionRepository;
     _eventLogService            = eventLogService;
     _posicionRepository         = posicionRepository;
     _statusService              = statusService;
     _imagenEvaluacionRepository = imagenEvaluacionRepository;
     _respuestaService           = respuestaService;
     _estandarService            = estandarService;
 }
 public EvaluacionService(IEvaluacionRepository evaluacionRepository, IMapper mapper)
 {
     _evaluacionRepository = evaluacionRepository;
     _mapper = mapper;
 }
Example #4
0
 public EvaluacionController(IEvaluacionRepository evaluacionRepository, IMapper mapper)
 {
     this.evaluacionRepository = evaluacionRepository;
     this.mapper = mapper;
 }