public ObraController(IObraService obraService, IObraRepository obraRepository, IPresupuestoService presupuestoService) { this.obraService = obraService; this.obraRepository = obraRepository; this.presupuestoService = presupuestoService; }
public ObrasController(IObraRepository obraRepository, IAutorRepository autorRepository, IObraService obraService, IMapper mapper, INotificador notificador) : base(notificador) { _obraRepository = obraRepository; _autorRepository = autorRepository; _obraService = obraService; _mapper = mapper; }
public ReservaService(IReservaRepository _reservaRepository, IClienteRepository _clienteRepository, IFuncionRepository _funcionRepository, IObraRepository _obraRepository, IUsuarioRepository _usuarioRepository, IPromocionRepository _promocionRepository, ITeatroRepository _teatroRepository, IAsientoRepository _asientoRepository, ILogEmailRepository _logEmailRepository, IEmpresaRepository _empresaRepository) { reservaRepository = _reservaRepository; clienteRepository = _clienteRepository; funcionRepository = _funcionRepository; obraRepository = _obraRepository; usuarioRepository = _usuarioRepository; promocionRepository = _promocionRepository; teatroRepository = _teatroRepository; asientoRepository = _asientoRepository; logEmailRepository = _logEmailRepository; empresaRepository = _empresaRepository; }
public ObraService(IObraRepository obraRepository, INotificador notificador) : base(notificador) { _obraRepository = obraRepository; }
public ObraService(IObraRepository obraRepository, IUnitOfWork unitOfWork) { this.obraRepository = obraRepository; this.unitOfWork = unitOfWork; }
public ObraAppService(ISmartNotification notification, IObraRepository obraRepository) { _obraRepository = obraRepository; _notification = notification; }
public ObraService(IObraRepository obraRepository) { _obraRepository = obraRepository; }
public ObraAppService(IObraRepository ObraRepository, MessageQueue messageQueue) : base(messageQueue) { this.ObraRepository = ObraRepository; }
public FSPAppService(IObraRepository obraRepository) { _obraRepository = obraRepository; }
public ObraAppImpl(IObraRepository obraRepository) { _obraRepository = obraRepository; }