using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TestAppRuna.Entities { public class ShopDbContext : DbContext { public ShopDbContext(DbContextOptions options) : base(options) { } public DbSet Customers { get; set; } public DbSet Products { get; set; } public DbSet Carts { get; set; } } }