MireaBackend/SqlData/Application/Interfaces/DbContexts/Schedule/ILessonDbContext.cs

9 lines
255 B
C#
Raw Normal View History

using Microsoft.EntityFrameworkCore;
using Mirea.Api.DataAccess.Domain.Schedule;
namespace Mirea.Api.DataAccess.Application.Interfaces.DbContexts.Schedule;
public interface ILessonDbContext : IDbContextBase
{
DbSet<Lesson> Lessons { get; set; }
}