11 lines
213 B
C#
11 lines
213 B
C#
|
using SportsStore.Domain.Entities;
|
|||
|
using System.Data.Entity;
|
|||
|
|
|||
|
namespace SportsStore.Domain.Concrete
|
|||
|
{
|
|||
|
public class EFDbContext : DbContext
|
|||
|
{
|
|||
|
public DbSet<Product> Products { get; set; }
|
|||
|
}
|
|||
|
}
|