Beispiel #1
0
 public void DeleteSystemLog(int logId)
 {
     try
     {
         using (connectionsLinqDataContext db = new connectionsLinqDataContext())
         {
             db.DeleteSystemLogById(logId);
         }
     }
     catch (Exception e)
     {
     }
 }