Пример #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 BannerController(IBannerServiceWEB srv, IEmpresaServiceWEB serviceEmpresa, IEnqueteServiceWEB srvEnquete)
 {
     this.service         = srv;
     this.serviceEmpresas = serviceEmpresa;
     this.serviceEnquete  = srvEnquete;
 }
Пример #4
0
 public MasterController(IUsuarioServiceWEB Service, IEmpresaServiceWEB ServiceEmpresas, IEnqueteServiceWEB ServiceEnquete)
 {
     this.service         = Service;
     this.serviceEmpresas = ServiceEmpresas;
     this.serviceEnquete  = ServiceEnquete;
 }
Пример #5
0
 public VoucherController(IVoucherServiceWEB service, IEmpresaServiceWEB serviceEmpresas, IEnqueteServiceWEB serviceEnquete)
 {
     this._service        = service;
     this.serviceEmpresas = serviceEmpresas;
     this.serviceEnquete  = serviceEnquete;
 }