public static void BajaCliente(Cliente delCliente)
 {
     try
     {
         ClienteDAL D = new ClienteDAL();
         D.DelCliente(delCliente);
     }
     catch
     {
         throw new Exception("");
     }
 }