9 lines
252 B
C#
9 lines
252 B
C#
|
using Microsoft.EntityFrameworkCore;
|
|||
|
using Mirea.Api.DataAccess.Domain.Schedule;
|
|||
|
|
|||
|
namespace Mirea.Api.DataAccess.Application.Interfaces.DbContexts.Schedule;
|
|||
|
|
|||
|
public interface IGroupDbContext : IDbContextBase
|
|||
|
{
|
|||
|
DbSet<Group> Groups { get; set; }
|
|||
|
}
|