Example #1
0
 public EventoAppService(IEventoRepository eventoRepo, IMapper mapper, IEventoService eventoService, IEventoParticipante eventoParticipanteService)
 {
     _eventocoRepo              = eventoRepo;
     _mapper                    = mapper;
     _eventoService             = eventoService;
     _eventoParticipanteService = eventoParticipanteService;
 }
 public ImportadorXmlService(INotaFiscalRepository notaFiscalRepository,
                             INotaInutilizadaService notaInutilizadaService, IEventoService eventoService)
 {
     _notaFiscalRepository   = notaFiscalRepository;
     _notaInutilizadaService = notaInutilizadaService;
     _eventoService          = eventoService;
 }
 public CancelaNotaFiscalService(INFeCancelamento nfeCancelamento, INotaFiscalRepository notaFiscalRepository,
                                 IEventoService eventoService)
 {
     _nfeCancelamento      = nfeCancelamento;
     _notaFiscalRepository = notaFiscalRepository;
     _eventoService        = eventoService;
 }
Example #4
0
 public EventosController(IEventoService eventoService,
                          IUtil util,
                          IAccountService accountService)
 {
     _util           = util;
     _accountService = accountService;
     _eventoService  = eventoService;
 }
Example #5
0
 public RedesSociaisController(IRedeSocialService RedeSocialService,
                               IEventoService eventoService,
                               IPalestranteService palestranteService)
 {
     _palestranteService = palestranteService;
     _redeSocialService  = RedeSocialService;
     _eventoService      = eventoService;
 }
 /// <summary>
 /// Construtor Object Class EV_INSCRICAO
 /// </summary>
 /// <param name="context">context database</param>
 public InscricaoBusiness(IInscricaoService pInscricaoService, IClienteService pClienteService,
                          IEventoService pEventoService, ISalalocalprovaService pSalalocalprovaService, ILocaleventoService localeventoService)
 {
     m_InscricaoService      = pInscricaoService;
     m_ClienteService        = pClienteService;
     m_EventoService         = pEventoService;
     m_SalalocalprovaService = pSalalocalprovaService;
     m_LocaleventoService    = localeventoService;
 }
Example #7
0
 public GeradorZip(IConfiguracaoService configuracaoService, IEventoService eventoService, INotaInutilizadaService notaInutilizadaService,
                   GeradorPDF geradorPdf, INotaFiscalRepository notaFiscalRepository)
 {
     _configuracaoService    = configuracaoService;
     _notaFiscalRepository   = notaFiscalRepository;
     _eventoService          = eventoService;
     _notaInutilizadaService = notaInutilizadaService;
     _geradorPdf             = geradorPdf;
 }
 public EventosController(IEventoService eventoService,
                          IEventoRepository eventoRepository,
                          IMapper mapper,
                          INotificador notificador) : base(notificador)
 {
     _eventoService    = eventoService;
     _eventoRepository = eventoRepository;
     _mapper           = mapper;
 }
 public EventoController(IUnitOfWork unitOfWork, ILogger <EventoController> logger, IMemoryCache memoryCache
                         , IEventoService eventoService
                         , IOperacaoService operacaoService
                         , IEventoParticipanteService EventoParticipanteService
                         )
     : base(unitOfWork, logger, memoryCache)
 {
     _eventoService             = eventoService ?? throw new ArgumentNullException(nameof(eventoService));
     _operacaoService           = operacaoService ?? throw new ArgumentNullException(nameof(operacaoService));
     _EventoParticipanteService = EventoParticipanteService ?? throw new ArgumentNullException(nameof(EventoParticipanteService));
 }
        public Response <IList <EventoDto> > ObtenerHistorico(int anio)
        {
            return(Ejecutar(() =>
            {
                _eventoService = new EventoService();

                IList <EventoDto> eventos = _eventoService.ObtenerHistorico(anio);

                return Response <IList <EventoDto> > .Correcto(eventos);
            }));
        }
 public AgendaController(IAgendaService agendaService,
                         IUsuarioService usuarioService,
                         ILocalService localService,
                         IEventoService eventoService,
                         ITipoEventoService tipoEventoService)
 {
     _agendaService     = agendaService;
     _usuarioService    = usuarioService;
     _localService      = localService;
     _eventoService     = eventoService;
     _tipoEventoService = tipoEventoService;
 }
Example #12
0
 public FotoApplicationService(
     IEventoService evtsvc,
     IFotoService fotoSvc,
     IPhotoResizer resizer,
     ApplicationUserManager usermng,
     ApplicationSignInManager sigmng) : base(fotoSvc)
 {
     this._eventSvc = evtsvc;
     this._fotoSvc  = fotoSvc;
     this._resizer  = resizer;
     this._userMng  = usermng;
     this._sigMng   = sigmng;
 }
 public ScheduleIoService(
     IEventoService eventoService,
     IUsuarioService usuarioService,
     ILocalService localService,
     IAgendaService agendaService,
     ITipoEventoService tipoEventoService
     )
 {
     _eventoService     = eventoService;
     _usuarioService    = usuarioService;
     _localService      = localService;
     _agendaService     = agendaService;
     _tipoEventoService = tipoEventoService;
 }
 public HomeController(IGaragemService garagemService,
                       IVagaService vagaService,
                       ILocacaoService locacaoService,
                       IUsuarioService usuarioService,
                       IVeiculoService veiculoService,
                       IEventoService eventoService
                       )
 {
     _garagemService = garagemService;
     _vagaService    = vagaService;
     _locacaoService = locacaoService;
     _usuarioService = usuarioService;
     _veiculoService = veiculoService;
     _eventoService  = eventoService;
 }
Example #15
0
 public EventoController(IEventoService eventoService,
                         IGaragemService garagemService,
                         IVagaService vagaService,
                         ILocacaoService locacaoService,
                         IFotoService fotoService,
                         INotificacaoEmailSmsService notificacaoEmailSms,
                         IUsuarioService usuarioService
                         )
 {
     _eventoService       = eventoService;
     _garagemService      = garagemService;
     _vagaService         = vagaService;
     _locacaoService      = locacaoService;
     _fotoService         = fotoService;
     _notificacaoEmailSms = notificacaoEmailSms;
     _usuarioService      = usuarioService;
 }
Example #16
0
 public ProductoService(IProductoQuerying productoQuerying, IArticuloService articuloService, ICapituloService capituloService,
     ILibroService libroService, IReporteService reporteService, IResenaService resenaService, IObraTraducidaService obraTraducidaService,
     IProyectoService proyectoService, ICursoService cursoService, ITesisDirigidaService tesisDirigidaService, IDictamenService dictamenService,
     IOrganoExternoService organoExternoService, IEventoService eventoService, IParticipacionMedioService participacionMedioService)
 {
     this.productoQuerying = productoQuerying;
     this.articuloService = articuloService;
     this.capituloService = capituloService;
     this.libroService = libroService;
     this.reporteService = reporteService;
     this.resenaService = resenaService;
     this.obraTraducidaService = obraTraducidaService;
     this.proyectoService = proyectoService;
     this.cursoService = cursoService;
     this.tesisDirigidaService = tesisDirigidaService;
     this.dictamenService = dictamenService;
     this.organoExternoService = organoExternoService;
     this.eventoService = eventoService;
     this.participacionMedioService = participacionMedioService;
 }
 public EventoController(ILogger <EventoController> logger, ProEventosContext context, IEventoService eventoService)
 {
     this.context   = context;
     _logger        = logger;
     _eventoService = eventoService;
 }
Example #18
0
 public NormaCadastradaIntegrationEventHandler(IEventoService eventoService, ILogger <NormaCadastradaIntegrationEventHandler> logger)
 {
     _eventoService = eventoService;
     _logger        = logger ?? throw new ArgumentNullException(nameof(logger));
 }
Example #19
0
 public EventoController(IEventoService evento)
 {
     _evento = evento;
 }
Example #20
0
 public EventoTeste()
 {
     _eventoService = new EventoService(new EfUnitOfWork(context), _eventoRepository);
     _localService  = new LocalService(new EfUnitOfWork(context), _localRepository);
 }
Example #21
0
 public EventoAppService(IEventoService eventoService)
     : base(eventoService)
 {
     _eventoService = eventoService;
 }
Example #22
0
 public EventosController(FestEventoContext context, IEventoService eventoService)
 {
     _context       = context;
     _eventoService = eventoService;
 }
Example #23
0
 public EstoqueMinimoIntegrationEventHandler(IEventoService eventoService, ILogger <IIntegrationEventHandler> logger)
 {
     _eventoService = eventoService;
     _logger        = logger ?? throw new System.ArgumentNullException(nameof(logger));
 }
 public ClienteBusiness(IClienteService clienteService, IRefreshtokenService refreshtokenService, IEventoService eventoService)
 {
     m_RefreshtokenServices = refreshtokenService;
     m_ClienteService       = clienteService;
     m_EventoService        = eventoService;
 }
Example #25
0
 public EventoApplication(IEventoService eventoService)
 {
     _eventoService = eventoService;
 }
Example #26
0
 public EventosController(IEventoService eventoService)
 {
     this._eventoService = eventoService;
 }
Example #27
0
 public EventoApplicationService(IEventoService svc, IPhotoResizer resizer) : base(svc)
 {
     _resizer = resizer;
 }
 public EventoBusiness(IEventoService pEventoService, IEventoturnosService pEventoturnosService, IEventodatasService pEventodatasService)
 {
     m_EventoService       = pEventoService;
     m_EventoturnosService = pEventoturnosService;
     m_EventodatasService  = pEventodatasService;
 }
Example #29
0
 public RelacaoOrcamentoVendasEventHandler(IEventoService eventoService, ILogger <RelacaoOrcamentoVendasEventHandler> logger)
 {
     _eventoService = eventoService;
     _logger        = logger ?? throw new ArgumentNullException(nameof(logger));
 }
Example #30
0
 public EventosController(IEventoService service, ILoteService loteService, IRedeSocialService redeSocialService)
 {
     _service           = service;
     _loteServices      = loteService;
     _redeSocialService = redeSocialService;
 }
 // construtor
 public EventoController(IEventoService eventoService)
 {
     _eventoService = eventoService;
 }
Example #32
0
 public EventoController(DominioDbContext contextDominio, ApiDbContext context)
 {
     _service = new EventoService(contextDominio, context);
 }