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

            _configuracaoAppService = configuracaoAppService;
        }
 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;
 }
 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;
 }
 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;
 }
 public ConfiguracaoController(IConfiguracaoAppService baseApps, IUsuarioAppService usuApps)
 {
     baseApp = baseApps;
     usuApp  = usuApps;
 }
 public ConfiguracaoController(IConfiguracaoAppService configuracaoAppService, IControleAcessoAppService controleacessoAppService)
 {
     _configuracaoAppService = configuracaoAppService;
     _controleacessoAppService = controleacessoAppService;
 }
 public ConfiguracaoController(IConfiguracaoAppService configuracaoService)
 {
     _configuracaoService = configuracaoService;
 }