From 791737a28d1bda9c0b36b5bed6fd1082e5bfc4f4 Mon Sep 17 00:00:00 2001 From: Drew Rautenberg Date: Wed, 15 Jul 2026 19:35:02 -0500 Subject: [PATCH] added customers model to context --- barkmanAPI/barkDbModel.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/barkmanAPI/barkDbModel.cs b/barkmanAPI/barkDbModel.cs index 214d277..e32cff0 100644 --- a/barkmanAPI/barkDbModel.cs +++ b/barkmanAPI/barkDbModel.cs @@ -6,6 +6,7 @@ public class BarkContext(DbContextOptions options) : DbContext(opti { public DbSet Inventory { get; set; } public DbSet ItemStatus { get; set; } + public DbSet Customers { get; set; } } [Index(nameof(Barcode), IsUnique = true)]