16 lines
322 B
C#
16 lines
322 B
C#
using SportsStore.Domain.Entities;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data.Entity;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SportsStore.Domain.Concrete
|
|
{
|
|
class EFDbContext : DbContext
|
|
{
|
|
public DbSet<Product> Products { get; set; }
|
|
}
|
|
}
|