public void Excluir(String Cliente)
        {
            clsClienteDal _ClienteDal = new clsClienteDal();

            try
            {
                if (Cliente == "")

                {
                    throw new Exception("PREENCHIMENTO INCORRETO");
                }
                else
                {
                    _ClienteDal.Excluir(Cliente);
                }
            }

            catch (Exception)
            {
                throw;
            }
        }