18 lines
698 B
C#
18 lines
698 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using Mirea.Api.DataAccess.Application.Interfaces.DbContexts.Schedule;
|
|
using Mirea.Api.DataAccess.Domain.Schedule;
|
|
using Mirea.Api.DataAccess.Persistence.Common;
|
|
using System.Reflection;
|
|
|
|
namespace Mirea.Api.DataAccess.Persistence.Contexts.Schedule;
|
|
|
|
public sealed class GroupDbContext(DbContextOptions<GroupDbContext> options) : BaseDbContext<GroupDbContext>(options), IGroupDbContext
|
|
{
|
|
public DbSet<Group> Groups { get; set; } = null!;
|
|
|
|
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
|
{
|
|
modelBuilder.ApplyConfigurationsFromAssembly(Assembly.GetExecutingAssembly());
|
|
base.OnModelCreating(modelBuilder);
|
|
}
|
|
} |