public void Add(Order order) { //adds the orderdetails to the order, then adds the order to the database AddOrderDetails(order); _checkRepo.Add(order); }
public void Add(SQLiteConnection connection, Checkout checkout) { CheckoutRepo.Add(connection, checkout); }