Sky.Net/Infrastucture/Data/StoreContext.cs
Charles Showalter 1a9fd04f26 Initial commit
2022-05-09 14:41:15 -07:00

13 lines
302 B
C#

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; }
}
}