コード例 #1
0
 public HomeController(
     IUsuarioAppService usuarioService,
     IConfiguracaoAppService configuracaoService)
 {
     _usuarioService      = usuarioService;
     _configuracaoService = configuracaoService;
 }
コード例 #2
0
 public InterfaceController(IControleAcessoAppService controleacessoAppService, IEmpresaAppService empresaAppService, ILojaAppService lojaAppService, IConfiguracaoAppService configuracaoAppService, IProdutoAppService produtoAppService)
 {
     _controleacessoAppService = controleacessoAppService;
     _empresaAppService = empresaAppService;
     _lojaAppService = lojaAppService;
     _configuracaoAppService = configuracaoAppService;
     _produtoAppService = produtoAppService;
 }
コード例 #3
0
        public EmailAppService(IConfiguracaoAppService configuracaoAppService)
        {
            if (configuracaoAppService == null)
            {
                throw new ArgumentNullException("configuracaoAppService");
            }

            _configuracaoAppService = configuracaoAppService;
        }
コード例 #4
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;
 }
コード例 #5
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;
 }
コード例 #6
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;
 }
コード例 #7
0
 public ConfiguracaoController(IConfiguracaoAppService baseApps, IUsuarioAppService usuApps)
 {
     baseApp = baseApps;
     usuApp  = usuApps;
 }
コード例 #8
0
 public ConfiguracaoController(IConfiguracaoAppService configuracaoAppService, IControleAcessoAppService controleacessoAppService)
 {
     _configuracaoAppService = configuracaoAppService;
     _controleacessoAppService = controleacessoAppService;
 }
コード例 #9
0
 public ConfiguracaoController(IConfiguracaoAppService configuracaoService)
 {
     _configuracaoService = configuracaoService;
 }