12 lines
302 B
C#
12 lines
302 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using ServiceManager.API.Models;
|
|
|
|
namespace ServiceManager.API
|
|
{
|
|
public class AppDbContext : DbContext
|
|
{
|
|
public AppDbContext(DbContextOptions<AppDbContext> options) : base(options) { }
|
|
public DbSet<Article> Articles { get; set; }
|
|
}
|
|
}
|