示例#1
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;
 }
示例#2
0
 public BannerController(IBannerServiceWEB srv, IEmpresaServiceWEB serviceEmpresa, IEnqueteServiceWEB srvEnquete)
 {
     this.service         = srv;
     this.serviceEmpresas = serviceEmpresa;
     this.serviceEnquete  = srvEnquete;
 }
示例#3
0
 public MasterController(IUsuarioServiceWEB Service, IEmpresaServiceWEB ServiceEmpresas, IEnqueteServiceWEB ServiceEnquete)
 {
     this.service         = Service;
     this.serviceEmpresas = ServiceEmpresas;
     this.serviceEnquete  = ServiceEnquete;
 }
示例#4
0
 public ControleAcessoController(IEmpresaServiceWEB service)
 {
     this.service = service;
 }
示例#5
0
 public EmpresaController(IEmpresaServiceWEB _service)
 {
     this.service = _service;
 }
示例#6
0
 public VoucherController(IVoucherServiceWEB service, IEmpresaServiceWEB serviceEmpresas, IEnqueteServiceWEB serviceEnquete)
 {
     this._service        = service;
     this.serviceEmpresas = serviceEmpresas;
     this.serviceEnquete  = serviceEnquete;
 }