public RelatorioApoioFolhaPontoController(IUsuarioAppService usuarioAppService, IUnidadeService unidadeService, IPactoAppService pactoservice, IUnidadeAppService unidadeAppService) : base(usuarioAppService)
 {
     _usuarioservice    = usuarioAppService;
     _unidadeService    = unidadeService;
     _pactoservice      = pactoservice;
     _unidadeAppService = unidadeAppService;
 }
Пример #2
0
 public AlunoController(IMapper mapper, IModuloAppService moduloAppService, IUnidadeAppService unidadeAppService, IRecuperarArquivosAppService arquivoAppService, IAlunoAppService alunoAppService)
 {
     _mapper            = mapper;
     _moduloAppService  = moduloAppService;
     _unidadeAppService = unidadeAppService;
     _arquivoAppService = arquivoAppService;
     _alunoAppService   = alunoAppService;
 }
Пример #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;
 }
Пример #7
0
 public UnidadeController(IUnidadeAppService service)
 {
     this.service = service;
 }
 public UnidadeController(IUnidadeAppService unidadeAppService,
                          INotificationHandler <DomainNotification> notifications,
                          IMediatorHandler mediator) : base(notifications, mediator)
 {
     _unidadeAppService = unidadeAppService;
 }
Пример #9
0
 public UnidadeController(IUnidadeAppService baseApps, ILogAppService logApps)
 {
     baseApp = baseApps;
     logApp  = logApps;
 }
Пример #10
0
 public UnidadeController(IUnidadeAppService unidadeApp)
 {
     _unidadeApp = unidadeApp;
 }
Пример #11
0
 public UnidadeTest(InicializacaoFixture fixture)
 {
     this.fixture    = fixture;
     this.appService = fixture.Container.GetService <IUnidadeAppService>();
 }
Пример #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;
 }
Пример #14
0
 public AlimentosController(IAlimentoAppService alimentoApp, IUnidadeAppService unidadeApp)
 {
     _alimentoApp = alimentoApp;
     _unidadeApp  = unidadeApp;
 }