예제 #1
0
 public HomeController(SolicitacaoDAO saDAO, DepartamentoDAO dep, ProdutosDAO prd, CentroCustoDAO cc)
 {
     this.saDAO   = saDAO;
     this.depDAO  = dep;
     this.prodDAO = prd;
     this.ccDao   = cc;
 }
 public DepartamentoController(DepartamentoDAO dep, CentroCustoDAO ccdao)
 {
     this.departamentoDAO  = dep;
     this.centroDeCustoDao = ccdao;
 }
예제 #3
0
 public CentroDeCustosController(CentroCustoDAO cc)
 {
     this.centroCustoDAO = cc;
 }