public void Delete(SQLiteConnection connection, Checkout checkout)
 {
     CheckoutRepo.Delete(connection, checkout);
 }
 public void Update(SQLiteConnection connection, Checkout checkout)
 {
     CheckoutRepo.Update(connection, checkout);
 }
 public Checkout Get(SQLiteConnection connection, int id)
 {
     return(CheckoutRepo.Get(connection, id));
 }
 public void Add(SQLiteConnection connection, Checkout checkout)
 {
     CheckoutRepo.Add(connection, checkout);
 }
 public IList <Checkout> GetAll(SQLiteConnection connection)
 {
     return(CheckoutRepo.GetAll(connection).ToList());
 }