db implement done lab 6

This commit is contained in:
VictoriaPresnyakova 2023-04-17 18:54:12 +04:00
parent 374bc28468
commit 11474146ab
2 changed files with 4 additions and 1 deletions

View File

@ -2,6 +2,7 @@
using JewelryStoreContracts.SearchModels;
using JewelryStoreContracts.StoragesContracts;
using JewelryStoreContracts.ViewModels;
using JewelryStoreDatabaseImplement.Models;
using System;
using System.Collections.Generic;
using System.Linq;

View File

@ -26,6 +26,8 @@ namespace JewelryStoreDatabaseImplement
public virtual DbSet<JewelComponent> JewelComponents { set; get; }
public virtual DbSet<Order> Orders { set; get; }
public virtual DbSet<Client> Clients { set; get; }
public virtual DbSet<Implementer> Implementers { set; get; }
}
}