Example #1
0
 public void Remove(int ID, System.Data.Common.DbTransaction transaction = null)
 {
     DbBase.DbExecute(string.Format("DELETE FROM PALAVRAS WHERE ID = {0}", ID), transaction);
 }
Example #2
0
 public void SetLetras(int Qtde)
 {
     DbBase.DbExecute(string.Format("update CONTADOR set LETRAS =  {0}", Qtde));
 }
Example #3
0
 public void Remove(int CODLIVRO, System.Data.Common.DbTransaction transaction = null)
 {
     DbBase.DbExecute(string.Format("DELETE FROM LIVROS WHERE CODLIVRO = {0}", CODLIVRO), transaction);
 }
Example #4
0
 public void SetPalavras(int Qtde)
 {
     DbBase.DbExecute(string.Format("update CONTADOR set PALAVRAS =  {0}", Qtde));
 }