Ejemplo n.º 1
0
 public EventosController(IEventoAppService eventoApp, IArquivoAppService arquivoApp, IVideoAppService videoApp, IParticipanteAppService participanteApp)
 {
     _eventoApp       = eventoApp;
     _arquivoApp      = arquivoApp;
     _videoApp        = videoApp;
     _participanteApp = participanteApp;
 }
Ejemplo n.º 2
0
 public EventosController(
     IEventoAppService eventoAppService,
     IDomainNotificationHandler <DomainNotification> notifications,
     IUser user) : base(notifications, user)
 {
     _eventoAppService = eventoAppService;
 }
Ejemplo n.º 3
0
 protected MeetupsController(IDomainNotificationHandler <DomainNotification> notifications, IUser user, IBus bus, IMeetupRepository meetupRepository, IEventoAppService meetupAppService, IMapper mapper) : base(notifications, user, bus)
 {
     _meetupAppService = meetupAppService;
     _meetupRepository = meetupRepository;
     _mapper           = mapper;
     _bus = bus;
 }
 public EventosController(
     INotificationHandler <DomainNotification> notifications,
     IMediatorHandler mediator,
     IEventoAppService eventoAppService)
     : base(notifications, mediator)
 {
     this.eventoAppService = eventoAppService;
 }
 public EventoController(IEventoAppService eventoApp, ITipo_eventoAppService tipoeventoAPP, ICommentsAppService commentsApp, IEvento_userAppService evento_userApp, IAlbum_eventoAppService albumEventoApp, IUserAppService userApp)
 {
     this.UserApp = userApp;
     this.EventoApp = eventoApp;
     this.TipoEventoApp = tipoeventoAPP;
     this.CommentsApp = commentsApp;
     this.AlbumEventoApp = albumEventoApp;
     this.EventouserApp = evento_userApp;
 }
Ejemplo n.º 6
0
 public EventosController(IDomainNotificationHandler <DomainNotification> notifications,
                          IUser user,
                          IBus bus, IEventoAppService eventoAppService,
                          IEventoRepository eventoRepository,
                          IMapper mapper) : base(notifications, user, bus)
 {
     _eventoAppService = eventoAppService;
     _eventoRepository = eventoRepository;
     _mapper           = mapper;
     _bus = bus;
 }
 public EventosController(
     INotificationHandler <DomainNotification> notifications,
     IUser user,
     IMediatorHandler mediator,
     IEventoAppService eventoAppService,
     IEventoRepository eventoRepository,
     IMapper mapper) : base(notifications, user, mediator)
 {
     _eventoAppService = eventoAppService;
     _eventoRepository = eventoRepository;
     _mapper           = mapper;
     _mediator         = mediator;
 }
Ejemplo n.º 8
0
 public EmailController(IEventoAppService eventoService, IParticipanteAppService participante, ApplicationUserManager userManager)
 {
     _eventoApp       = eventoService;
     _participanteApp = participante;
     _userManager     = userManager;
 }
Ejemplo n.º 9
0
 public EventoController(IEventoAppService appService)
 {
     this.appService = appService;
 }
Ejemplo n.º 10
0
 public EventosController(IEventoAppService eventoAppService)
 {
     _eventoAppService = eventoAppService;
 }
Ejemplo n.º 11
0
 public ParticipantesController(IParticipanteAppService participanteService, IEventoAppService eventoService, ApplicationUserManager userManager)
 {
     _participanteApp = participanteService;
     _eventoApp       = eventoService;
     _userManager     = userManager;
 }
Ejemplo n.º 12
0
 public ArquivosController(IArquivoAppService arquivoApp, IEventoAppService eventoApp)
 {
     _arquivoApp = arquivoApp;
     _eventoApp  = eventoApp;
 }
Ejemplo n.º 13
0
 public CuponsController(ICupomAppService cupomApp, IEventoAppService eventoApp)
 {
     _cupomApp  = cupomApp;
     _eventoApp = eventoApp;
 }
Ejemplo n.º 14
0
 /// <summary>
 /// Contrutor Evento
 /// </summary>
 /// <param name="eventoAppService"></param>
 public EventoController(IEventoAppService eventoAppService)
 {
     this.eventoAppService = eventoAppService;
 }
Ejemplo n.º 15
0
 public EventoController(IEventoAppService appservice) => _appService = appservice;
Ejemplo n.º 16
0
 public VideosController(IVideoAppService videoApp, IEventoAppService eventoApp)
 {
     _videoApp  = videoApp;
     _eventoApp = eventoApp;
 }
Ejemplo n.º 17
0
 public HomeController(IEventoAppService eventoApp)
 {
     _eventoApp = eventoApp;
 }