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 FuncionService(IFuncionRepository funcionRepository) { _funcionRepository = funcionRepository; }