コード例 #1
0
 public QuizController(IEnqueteServiceWEB _service, IPerguntaServiceWEB _servicePergunta,
                       IRespostaServiceWEB _serviceResposta, IBlackListServiceWEB _serviceBlackList, IUsuarioServiceWEB _serviceUsuario)
 {
     this.service          = _service;
     this.servicePergunta  = _servicePergunta;
     this.serviceResposta  = _serviceResposta;
     this.serviceBlackList = _serviceBlackList;
     this.serviceUsuario   = _serviceUsuario;
 }
コード例 #2
0
 public RelatorioController(IUsuarioServiceWEB srvUsuario,
                            IEmpresaServiceWEB srvEmpresa, IEnqueteServiceWEB srvEnquete, IPerguntaRespostaServiceWEB srvPerguntaService,
                            IRespostaServiceWEB srvResposta)
 {
     this.srvUsuario          = srvUsuario;
     this.srvEmpresa          = srvEmpresa;
     this.srvEnquete          = srvEnquete;
     this.srvPerguntaResposta = srvPerguntaService;
     this.srvResposta         = srvResposta;
 }
コード例 #3
0
 public MasterController(IUsuarioServiceWEB Service, IEmpresaServiceWEB ServiceEmpresas, IEnqueteServiceWEB ServiceEnquete)
 {
     this.service         = Service;
     this.serviceEmpresas = ServiceEmpresas;
     this.serviceEnquete  = ServiceEnquete;
 }