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

9 lines
273 B
C#
Raw Normal View History

2024-05-19 11:52:08 +03:00
using Microsoft.EntityFrameworkCore;
using Mirea.Api.DataAccess.Domain.Schedule;
namespace Mirea.Api.DataAccess.Application.Interfaces.DbContexts.Schedule;
public interface ISpecificWeekDbContext : IDbContextBase
{
DbSet<SpecificWeek> SpecificWeeks { get; set; }
}