public void WhenAskingForInventoryByEventIdAndStatus_MatchingInventoryAreReturned()
 {
     var client = new AWGServiceClient();
     var inventory = client.findVehiclesByStatusAndId(InventoryStatus.Sold, 123191);
     Assert.AreEqual(26, inventory.Count);
 }