Cancel invoice

This commit is contained in:
MarcEricMartel
2022-11-14 07:19:33 -08:00
parent 94567c2395
commit cdcc6b666d
2 changed files with 24 additions and 10 deletions

View File

@@ -9,6 +9,7 @@ public class InventoryContext : IdentityDbContext<InventoryUser> {
public DbSet<ProductModel> Products { get; set; }
public DbSet<AddressModel> Addresses { get; set; }
public DbSet<InvoiceModel> Invoices { get; set; }
//public DbSet<InvoiceModel.ProductInvoice> ProductInvoice { get; set; }
public InventoryContext(DbContextOptions<InventoryContext> options) : base(options) { }