public SelfServiceController(IControleAcessoAppService controleacessoAppService, ISelfServiceAppService selfserviceAppService, ILojaAppService lojaAppService, ICargoAppService cargoAppService)
 {
     _controleacessoAppService = controleacessoAppService;
     _selfserviceAppService = selfserviceAppService;
     _lojaAppService = lojaAppService;
     _cargoAppService = cargoAppService;
 }
 public EquipeController(IUsuarioAppService baseApps, ILogAppService logApps, ICargoAppService carApps, IFilialAppService filApps)
 {
     baseApp = baseApps;
     logApp  = logApps;
     carApp  = carApps;
     filApp  = filApps;
 }
 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 ProcessosController(IProcessoAppService processoAppService,
                            ICargoAppService cargoAppService,
                            IConvocadoAppService convocadoAppService,
                            IConvocacaoAppService convocacaoAppService,
                            IListaOpcoes listaOpcoes)
 {
     _processoAppService   = processoAppService;
     _cargoAppService      = cargoAppService;
     _convocadoAppService  = convocadoAppService;
     _convocacaoAppService = convocacaoAppService;
     _listaOpcoes          = listaOpcoes;
 }
 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;
 }
 public RelatorioController(
     ICargoAppService cargoAppService,
     IConvocadoAppService convocadoAppService,
     IConvocacaoAppService convocacaoAppService,
     IEnumDescription enumDescription,
     IPrimeiroAcessoAppService primeiroAcessoAppService)
 {
     _cargoAppService          = cargoAppService;
     _convocadoAppService      = convocadoAppService;
     _convocacaoAppService     = convocacaoAppService;
     _enumDescription          = enumDescription;
     _primeiroAcessoAppService = primeiroAcessoAppService;
 }
 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 CargosController(ICargoAppService cargoApp)
 {
     _cargoApp = cargoApp;
 }
 public CargoController(ICargoAppService baseApps, ILogAppService logApps)
 {
     baseApp = baseApps;
     logApp  = logApps;
 }
 public CargoController(ICargoAppService cargoAppService, IProcessoAppService processoAppService)
 {
     _cargoAppService    = cargoAppService;
     _processoAppService = processoAppService;
 }
Esempio n. 11
0
 public CargoController(ICargoAppService cargoAppService)
 {
     _cargoAppService = cargoAppService;
 }
 public CargoController(ICargoAppService cargoAppService)
     : base(cargoAppService)
 {
 }
Esempio n. 13
0
 public CargoController(ICargoAppService cargoAppService,
                        INotificationHandler <DomainNotification> notifications,
                        IMediatorHandler mediator) : base(notifications, mediator)
 {
     _cargoAppService = cargoAppService;
 }
Esempio n. 14
0
 public CargoController(ICargoAppService CargoAppService)
 {
     _cargoAppService = CargoAppService;
 }