MireaBackend/Application/Interfaces/DbContexts/Schedule/IDisciplineDbContext.cs

9 lines
267 B
C#
Raw Normal View History

using Microsoft.EntityFrameworkCore;
using Mirea.Api.DataAccess.Domain.Schedule;
namespace Mirea.Api.DataAccess.Application.Interfaces.DbContexts.Schedule;
2024-01-26 07:43:27 +03:00
public interface IDisciplineDbContext : IDbContextBase
{
2024-01-26 07:43:27 +03:00
DbSet<Discipline> Disciplines { get; set; }
}