Example #1
0
 public int RetornarProduto()
 {
     try
     {
         instrucaoSql = "Select max(CodigoProduto)from tbProduto";
         return(c.RetornarExecuteScalar(instrucaoSql));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Example #2
0
 public int RetornarVenda()
 {
     try
     {
         instrucaoSql = "Select max(CodigoVenda)from tbVenda";
         return(c.RetornarExecuteScalar(instrucaoSql));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Example #3
0
        public bool VerificarCupom()
        {
            int CupomValido = 0;

            CupomValido = c.RetornarExecuteScalar("SELECT COUNT(Id)FROM tbCupom where CodigoCupom ='" + _CodigoCupom + "'");

            if (CupomValido > 0)
            {
                return(true);
            }

            return(false);
        }
Example #4
0
        public int RetornarFuncionario()
        {
            try
            {
                instrucaoSql = "Select max(CodigoFunc)from tbFuncionario";
                return(c.RetornarExecuteScalar(instrucaoSql));
            }

            catch (Exception ex)
            {
                throw ex;
            }
        }
Example #5
0
        private void VerificarCpfCadastrado()
        {
            DAO.ClasseParaManipularBancoDeDados c = new DAO.ClasseParaManipularBancoDeDados();

            int cpfCadastrado = 0;

            cpfCadastrado = c.RetornarExecuteScalar("SELECT COUNT(CodigoCliente)FROM tbCliente where Cpf ='" + mskCPF.Text + "'");

            if (cpfCadastrado > 0)
            {
                MessageBox.Show("Cpf já cadastrado no sistema ");
                mskCPF.Clear();
                mskCPF.Focus();
                return;
            }
        }