Exemplo n.º 1
0
 public static void eliminarAbogado(int pId)
 {
     DataAccessLayerAbogado oDAL = new SQLAbogado();
     try
     {
         oDAL.Delete(pId);
     }
     catch(SqlException)
     {
         throw new AbogadoConExpedietesIniciados();
     }
 }