21 lines
509 B
C#
21 lines
509 B
C#
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<ShopDbContext> options) : base(options)
|
|
{
|
|
}
|
|
|
|
public DbSet<Customer> Customers { get; set; }
|
|
public DbSet<Product> Products { get; set; }
|
|
public DbSet<Cart> Carts { get; set; }
|
|
}
|
|
}
|