コード例 #1
0
 public bool ExistsCPF(int id_cliente, string cpf)
 {
     try
     {
         if (Global.TpConexao == Enumeradores.TipoConexao.LAN)
         {
             return(regrasnegocio.ExistsCPF(id_cliente, cpf));
         }
         else
         {
             return(false);
         }
     }
     catch
     {
         return(false);
     }
 }