Beispiel #1
0
 private static void RemoveRecordByld(int carld, byte[] timestamp)
 {
     using (var repo = new inventoryRepo())
     {
         repo.Delete(carld, timestamp);
     }
 }
Beispiel #2
0
 private static void RemoveRecordByCar(inventory carToDelete)
 {
     using (var repo = new inventoryRepo())
     {
         repo.Delete(carToDelete);
     }
 }