public EventosController(IEventoAppService eventoApp, IArquivoAppService arquivoApp, IVideoAppService videoApp, IParticipanteAppService participanteApp) { _eventoApp = eventoApp; _arquivoApp = arquivoApp; _videoApp = videoApp; _participanteApp = participanteApp; }
public EventosController( IEventoAppService eventoAppService, IDomainNotificationHandler <DomainNotification> notifications, IUser user) : base(notifications, user) { _eventoAppService = eventoAppService; }
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; }
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; }
public EmailController(IEventoAppService eventoService, IParticipanteAppService participante, ApplicationUserManager userManager) { _eventoApp = eventoService; _participanteApp = participante; _userManager = userManager; }
public EventoController(IEventoAppService appService) { this.appService = appService; }
public EventosController(IEventoAppService eventoAppService) { _eventoAppService = eventoAppService; }
public ParticipantesController(IParticipanteAppService participanteService, IEventoAppService eventoService, ApplicationUserManager userManager) { _participanteApp = participanteService; _eventoApp = eventoService; _userManager = userManager; }
public ArquivosController(IArquivoAppService arquivoApp, IEventoAppService eventoApp) { _arquivoApp = arquivoApp; _eventoApp = eventoApp; }
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; }
public EventoController(IEventoAppService appservice) => _appService = appservice;
public VideosController(IVideoAppService videoApp, IEventoAppService eventoApp) { _videoApp = videoApp; _eventoApp = eventoApp; }
public HomeController(IEventoAppService eventoApp) { _eventoApp = eventoApp; }