public function init()
 {
     parent::init();
     $this->_name = 'Usuários';
     $this->_table = 'usuario';
     $this->_form = new UsuarioForm();
     $this->_cols = array('email' => 'string');
 }
 public function init()
 {
     parent::init();
     $this->_name = 'Tributos';
     $this->_table = 'tributo';
     $this->_form = new TributoForm();
     $this->_cols = array('nome' => 'string', 'imposto' => 'string');
 }
 public function init()
 {
     parent::init();
     $this->_name = 'Produtos';
     $this->_table = 'produto';
     $this->_form = new ProdutoForm();
     $this->_cols = array('nome' => 'string');
 }