コード例 #1
0
 public SelfServiceController(IControleAcessoAppService controleacessoAppService, ISelfServiceAppService selfserviceAppService, ILojaAppService lojaAppService, ICargoAppService cargoAppService)
 {
     _controleacessoAppService = controleacessoAppService;
     _selfserviceAppService = selfserviceAppService;
     _lojaAppService = lojaAppService;
     _cargoAppService = cargoAppService;
 }
コード例 #2
0
 public EquipeController(IUsuarioAppService baseApps, ILogAppService logApps, ICargoAppService carApps, IFilialAppService filApps)
 {
     baseApp = baseApps;
     logApp  = logApps;
     carApp  = carApps;
     filApp  = filApps;
 }
コード例 #3
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;
 }
コード例 #4
0
 public ProcessosController(IProcessoAppService processoAppService,
                            ICargoAppService cargoAppService,
                            IConvocadoAppService convocadoAppService,
                            IConvocacaoAppService convocacaoAppService,
                            IListaOpcoes listaOpcoes)
 {
     _processoAppService   = processoAppService;
     _cargoAppService      = cargoAppService;
     _convocadoAppService  = convocadoAppService;
     _convocacaoAppService = convocacaoAppService;
     _listaOpcoes          = listaOpcoes;
 }
コード例 #5
0
 public ComissoesController(IControleAcessoAppService controleacessoAppService, IColaboradorAppService colaboradorAppService, ILojaAppService lojaAppService, IProdutoAppService produtoAppService, ITipoBusinessAppService tipobusinessAppService, ICargoAppService cargoAppService, IAeroportoAppService aeroportoAppService, IProdutoSubGrupoDufryAppService produtoSubGrupoDufryAppService, IProdutoCategoriaAppService produtoCategoriaAppService, IProdutoGrupoDufryAppService produtoGrupoDufryAppService)
 {
     _controleacessoAppService = controleacessoAppService;
     _colaboradorAppService = colaboradorAppService;
     _lojaAppService = lojaAppService;
     _produtoAppService = produtoAppService;
     _tipobusinessAppService = tipobusinessAppService;
     _cargoAppService = cargoAppService;
     _aeroportoAppService = aeroportoAppService;
     _produtoSubGrupoDufryAppService = produtoSubGrupoDufryAppService;
     _produtoCategoriaAppService = produtoCategoriaAppService;
     _produtoGrupoDufryAppService = produtoGrupoDufryAppService;
 }
コード例 #6
0
 public RelatorioController(
     ICargoAppService cargoAppService,
     IConvocadoAppService convocadoAppService,
     IConvocacaoAppService convocacaoAppService,
     IEnumDescription enumDescription,
     IPrimeiroAcessoAppService primeiroAcessoAppService)
 {
     _cargoAppService          = cargoAppService;
     _convocadoAppService      = convocadoAppService;
     _convocacaoAppService     = convocacaoAppService;
     _enumDescription          = enumDescription;
     _primeiroAcessoAppService = primeiroAcessoAppService;
 }
コード例 #7
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;
 }
コード例 #8
0
 public CargosController(ICargoAppService cargoApp)
 {
     _cargoApp = cargoApp;
 }
コード例 #9
0
 public CargoController(ICargoAppService baseApps, ILogAppService logApps)
 {
     baseApp = baseApps;
     logApp  = logApps;
 }
コード例 #10
0
 public CargoController(ICargoAppService cargoAppService, IProcessoAppService processoAppService)
 {
     _cargoAppService    = cargoAppService;
     _processoAppService = processoAppService;
 }
コード例 #11
0
 public CargoController(ICargoAppService cargoAppService)
 {
     _cargoAppService = cargoAppService;
 }
コード例 #12
0
 public CargoController(ICargoAppService cargoAppService)
     : base(cargoAppService)
 {
 }
コード例 #13
0
 public CargoController(ICargoAppService cargoAppService,
                        INotificationHandler <DomainNotification> notifications,
                        IMediatorHandler mediator) : base(notifications, mediator)
 {
     _cargoAppService = cargoAppService;
 }
コード例 #14
0
 public CargoController(ICargoAppService CargoAppService)
 {
     _cargoAppService = CargoAppService;
 }