コード例 #1
0
 public NoticiaController(
     INoticiaAppService noticiaAppService,
     IMapper mapper,
     IDomainNotificationHandler <DomainNotification> notifications,
     IBus bus) : base(notifications, bus)
 {
     _noticiaAppService = noticiaAppService;
     _mapper            = mapper;
 }
コード例 #2
0
 public BaseAdminController(IUsuarioAppService baseApps, ILogAppService logApps, INoticiaAppService notApps, INotificacaoAppService notfApps, IUsuarioAppService usuApps, IConfiguracaoAppService confApps, ICargoAppService carApps)
 {
     baseApp = baseApps;
     logApp  = logApps;
     notiApp = notApps;
     notfApp = notfApps;
     usuApp  = usuApps;
     confApp = confApps;
     carApp  = carApps;
 }
コード例 #3
0
 public BaseAdminController(IUsuarioAppService baseApps, ILogAppService logApps, INoticiaAppService notApps, ITarefaAppService tarApps, INotificacaoAppService notfApps, IUsuarioAppService usuApps, IAgendaAppService ageApps, IConfiguracaoAppService confApps, ITipoPessoaAppService tpApps)
 {
     baseApp = baseApps;
     logApp  = logApps;
     notiApp = notApps;
     tarApp  = tarApps;
     notfApp = notfApps;
     usuApp  = usuApps;
     ageApp  = ageApps;
     confApp = confApps;
     tpApp   = tpApps;
 }
コード例 #4
0
 public BaseAdminController(IUsuarioAppService baseApps, ILogAppService logApps, INoticiaAppService notApps, INotificacaoAppService notfApps, IUsuarioAppService usuApps, IOrigemAppService oriApps, IProfissaoAppService proApps, IClubeAppService cluApps, ICategoriaContatoAppService ccApps)
 {
     baseApp = baseApps;
     logApp  = logApps;
     notiApp = notApps;
     notfApp = notfApps;
     usuApp  = usuApps;
     oriApp  = oriApps;
     proApp  = proApps;
     cluApp  = cluApps;
     ccApp   = ccApps;
 }
コード例 #5
0
 public BaseAdminController(IUsuarioAppService baseApps, ILogAppService logApps, INoticiaAppService notApps, ITarefaAppService tarApps, INotificacaoAppService notfApps, ICargoAppService carApps, IUsuarioAppService usuApps, IFilialAppService filApps, ITipoContribuinteAppService tcoApps, IUnidadeAppService uniApps, IAgendaAppService ageApps, ITipoTagAppService tagApps, IConfiguracaoAppService confApps, ITipoPessoaAppService tpApps, IRegimeTributarioAppService rtApps)
 {
     baseApp = baseApps;
     logApp  = logApps;
     notiApp = notApps;
     tarApp  = tarApps;
     notfApp = notfApps;
     carApp  = carApps;
     usuApp  = usuApps;
     filApp  = filApps;
     tcoApp  = tcoApps;
     uniApp  = uniApps;
     ageApp  = ageApps;
     tagApp  = tagApps;
     confApp = confApps;
     tpApp   = tpApps;
     rtApp   = rtApps;
 }
コード例 #6
0
 public NoticiaController(INoticiaAppService baseApps, ILogAppService logApps)
 {
     baseApp = baseApps;
     logApp  = logApps;
 }
コード例 #7
0
 public UsuariosController(INoticiaAppService noticiaApp, IUsuarioAppService usuarioApp)
 {
     _noticiaApp = noticiaApp;
     _usuarioApp = usuarioApp;
 }
コード例 #8
0
 public AdministradoresController(INoticiaAppService noticiaApp, IUsuarioAppService usuarioApp)
 {
     _noticiaApp = noticiaApp;
     _usuarioApp = usuarioApp;
 }