Sky.Net/Infrastucture/Data/StoreContext.cs

13 lines
302 B
C#
Raw Normal View History

2022-05-09 14:41:15 -07:00
using Core.Entities;
using Microsoft.EntityFrameworkCore;
namespace Infrastucture.Data
{
public class StoreContext : DbContext
{
public StoreContext(DbContextOptions<StoreContext> options) : base(options)
{
}
public DbSet<Product> Products { get; set; }
}
}