public RelatorioApoioFolhaPontoController(IUsuarioAppService usuarioAppService, IUnidadeService unidadeService, IPactoAppService pactoservice, IUnidadeAppService unidadeAppService) : base(usuarioAppService)
 {
     _usuarioservice    = usuarioAppService;
     _unidadeService    = unidadeService;
     _pactoservice      = pactoservice;
     _unidadeAppService = unidadeAppService;
 }
Ejemplo n.º 2
0
 public AlunoController(IMapper mapper, IModuloAppService moduloAppService, IUnidadeAppService unidadeAppService, IRecuperarArquivosAppService arquivoAppService, IAlunoAppService alunoAppService)
 {
     _mapper            = mapper;
     _moduloAppService  = moduloAppService;
     _unidadeAppService = unidadeAppService;
     _arquivoAppService = arquivoAppService;
     _alunoAppService   = alunoAppService;
 }
Ejemplo n.º 3
0
 public ControleDeUnidadeController(ICoordenadorAppService coordenadorAppService, IMapper mapper,
                                    IModuloAppService moduloAppService, IUnidadeAppService unidadeAppService, IProfessorAppService professorAppService)
 {
     _mapper                = mapper;
     _moduloAppService      = moduloAppService;
     _unidadeAppService     = unidadeAppService;
     _coordenadorAppService = coordenadorAppService;
     _professorAppService   = professorAppService;
 }
 public ProfessorController(IMapper mapper, IModuloAppService moduloAppService, IUnidadeAppService unidadeAppService, IRecuperarArquivosAppService arquivoAppService, IDelecaoDeArquivosAppService deletarAppService,
                            IEnviarArquivosAppService enviarAquivoAppService, IProfessorAppService professorAppService, ILerArquivoAppService lerArquivoAppService, ILerArquivoEmBytesAppService lerArquivoEmBytesAppService)
 {
     _mapper = mapper;
     _professorAppService    = professorAppService;
     _unidadeAppService      = unidadeAppService;
     _arquivoAppService      = arquivoAppService;
     _enviarAquivoAppService = enviarAquivoAppService;
     _encoder = UrlEncoder.Create();
 }
 public CoordenadorController(IMapper mapper, IModuloAppService moduloAppService, IUnidadeAppService unidadeAppService,
                              IRecuperarArquivosAppService recuperarArquivoAppService, IDelecaoDeArquivosAppService deletarArquivoAppService,
                              IEnviarArquivosAppService enviarArquivoAppService, ICoordenadorAppService coordenadorAppService,
                              ILerArquivoEmBytesAppService lerArquivoEmBytesAppService, ILerArquivoAppService lerArquivoAppService)
 {
     _mapper                     = mapper;
     _moduloAppService           = moduloAppService;
     _unidadeAppService          = unidadeAppService;
     _recuperarArquivoAppService = recuperarArquivoAppService;
     _enviarArquivoAppService    = enviarArquivoAppService;
     _coordenadorAppService      = coordenadorAppService;
     _encoder                    = UrlEncoder.Create();
 }
 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;
 }
Ejemplo n.º 7
0
 public UnidadeController(IUnidadeAppService service)
 {
     this.service = service;
 }
 public UnidadeController(IUnidadeAppService unidadeAppService,
                          INotificationHandler <DomainNotification> notifications,
                          IMediatorHandler mediator) : base(notifications, mediator)
 {
     _unidadeAppService = unidadeAppService;
 }
Ejemplo n.º 9
0
 public UnidadeController(IUnidadeAppService baseApps, ILogAppService logApps)
 {
     baseApp = baseApps;
     logApp  = logApps;
 }
Ejemplo n.º 10
0
 public UnidadeController(IUnidadeAppService unidadeApp)
 {
     _unidadeApp = unidadeApp;
 }
Ejemplo n.º 11
0
 public UnidadeTest(InicializacaoFixture fixture)
 {
     this.fixture    = fixture;
     this.appService = fixture.Container.GetService <IUnidadeAppService>();
 }
Ejemplo n.º 12
0
 public ControleDeProfessorController(IMapper mapper, IPessoaAppService pessoaAppService, UserManager <AppUser> userManager, SignInManager <AppUser> signInManager,
                                      IProfessorAppService professorAppService, IUnidadeAppService unidadeAppService, ICoordenadorAppService coordenadorAppService)
 {
     _mapper                = mapper;
     _pessoaAppService      = pessoaAppService;
     _professorAppService   = professorAppService;
     _userManager           = userManager;
     _coordenadorAppService = coordenadorAppService;
 }
 public UnidadeController(IUnidadeAppService UnidadeAppService)
 {
     _UnidadeAppService = UnidadeAppService;
 }
Ejemplo n.º 14
0
 public AlimentosController(IAlimentoAppService alimentoApp, IUnidadeAppService unidadeApp)
 {
     _alimentoApp = alimentoApp;
     _unidadeApp  = unidadeApp;
 }