Ejemplo n.º 1
0
 public AlunoController(IMapper mapper, IModuloAppService moduloAppService, IUnidadeAppService unidadeAppService, IRecuperarArquivosAppService arquivoAppService, IAlunoAppService alunoAppService)
 {
     _mapper            = mapper;
     _moduloAppService  = moduloAppService;
     _unidadeAppService = unidadeAppService;
     _arquivoAppService = arquivoAppService;
     _alunoAppService   = alunoAppService;
 }
 public OrdemDeServicoController(IOrdemDeServicoAppService osAppService, IClienteAppService clienteAppService,
                                 ISistemaAppService sistemaAppService, IModuloAppService moduloAppService, IProgramadorAppService programadorAppService)
 {
     _osAppService          = osAppService;
     _clienteAppService     = clienteAppService;
     _sistemaAppService     = sistemaAppService;
     _moduloAppService      = moduloAppService;
     _programadorAppService = programadorAppService;
 }
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;
 }
Ejemplo n.º 4
0
 public HomeController(IModuloAppService moduloAppService,
                       IAcessoAppService acessoAppService,
                       IModuloSigimAppService moduloSigimAppService,
                       MessageQueue messageQueue)
     : base(messageQueue)
 {
     this.moduloAppService      = moduloAppService;
     this.acessoAppService      = acessoAppService;
     this.moduloSigimAppService = moduloSigimAppService;
 }
 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();
 }
Ejemplo n.º 6
0
 public PerfilController(
     IPerfilAppService perfilAppService,
     IModuloAppService moduloAppService,
     IFuncionalidadeAppService funcionalidadeAppService,
     MessageQueue messageQueue)
     : base(messageQueue)
 {
     this.perfilAppService         = perfilAppService;
     this.moduloAppService         = moduloAppService;
     this.funcionalidadeAppService = funcionalidadeAppService;
 }
Ejemplo n.º 7
0
 public AcessoAppService(IModuloSigimAppService moduloSigimAppService,
                         IModuloAppService moduloAppService,
                         IUsuarioAppService usuarioAppService,
                         IUsuarioFuncionalidadeAppService usuarioFuncionalidadeAppService,
                         MessageQueue messageQueue)
     : base(messageQueue)
 {
     this.moduloSigimAppService           = moduloSigimAppService;
     this.moduloAppService                = moduloAppService;
     this.usuarioAppService               = usuarioAppService;
     this.usuarioFuncionalidadeAppService = usuarioFuncionalidadeAppService;
 }
 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();
 }
Ejemplo n.º 9
0
 public FuncionalidadeAppService(IModuloAppService moduloAppService, MessageQueue messageQueue)
     : base(messageQueue)
 {
     this.moduloAppService = moduloAppService;
 }
Ejemplo n.º 10
0
 public ModuloController(IModuloAppService moduloAppService, ISistemaAppService sistemaAppService)
 {
     _moduloAppService  = moduloAppService;
     _sistemaAppService = sistemaAppService;
 }