示例#1
0
 public EventosController(IEventoAppService eventoApp, IArquivoAppService arquivoApp, IVideoAppService videoApp, IParticipanteAppService participanteApp)
 {
     _eventoApp       = eventoApp;
     _arquivoApp      = arquivoApp;
     _videoApp        = videoApp;
     _participanteApp = participanteApp;
 }
示例#2
0
 public EventosController(
     IEventoAppService eventoAppService,
     IDomainNotificationHandler <DomainNotification> notifications,
     IUser user) : base(notifications, user)
 {
     _eventoAppService = eventoAppService;
 }
示例#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;
 }
示例#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;
 }
示例#8
0
 public EmailController(IEventoAppService eventoService, IParticipanteAppService participante, ApplicationUserManager userManager)
 {
     _eventoApp       = eventoService;
     _participanteApp = participante;
     _userManager     = userManager;
 }
示例#9
0
 public EventoController(IEventoAppService appService)
 {
     this.appService = appService;
 }
示例#10
0
 public EventosController(IEventoAppService eventoAppService)
 {
     _eventoAppService = eventoAppService;
 }
示例#11
0
 public ParticipantesController(IParticipanteAppService participanteService, IEventoAppService eventoService, ApplicationUserManager userManager)
 {
     _participanteApp = participanteService;
     _eventoApp       = eventoService;
     _userManager     = userManager;
 }
示例#12
0
 public ArquivosController(IArquivoAppService arquivoApp, IEventoAppService eventoApp)
 {
     _arquivoApp = arquivoApp;
     _eventoApp  = eventoApp;
 }
示例#13
0
 public CuponsController(ICupomAppService cupomApp, IEventoAppService eventoApp)
 {
     _cupomApp  = cupomApp;
     _eventoApp = eventoApp;
 }
 /// <summary>
 /// Contrutor Evento
 /// </summary>
 /// <param name="eventoAppService"></param>
 public EventoController(IEventoAppService eventoAppService)
 {
     this.eventoAppService = eventoAppService;
 }
示例#15
0
 public EventoController(IEventoAppService appservice) => _appService = appservice;
示例#16
0
 public VideosController(IVideoAppService videoApp, IEventoAppService eventoApp)
 {
     _videoApp  = videoApp;
     _eventoApp = eventoApp;
 }
示例#17
0
 public HomeController(IEventoAppService eventoApp)
 {
     _eventoApp = eventoApp;
 }