9 lines
198 B
C#
9 lines
198 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using WorkFlow.Domain.Entities;
|
|
|
|
namespace WorkFlow.Infrastructure
|
|
{
|
|
public class WFDBContext(DbContextOptions options) : DbContext(options)
|
|
{
|
|
}
|
|
} |