public CadSetor CadSetorIncluir(CadSetor obj) {

    CadSetor CadSetor = cs.incluir(obj);

    return CadSetor;
  }
 public CadSetor incluir(CadSetor obj) {
   obj.setId_setor(null);
   CadSetorDAO.getInstance().saveInsert(obj);
   return obj;
 }