Merge branch 'release/v1.0.0' into feat/application-command
Some checks failed
.NET Test Pipeline / build-and-test (pull_request) Failing after 1m15s

This commit is contained in:
2024-01-26 07:48:27 +03:00
27 changed files with 138 additions and 191 deletions

View File

@ -3,7 +3,7 @@ using Mirea.Api.DataAccess.Domain.Schedule;
namespace Mirea.Api.DataAccess.Application.Interfaces.DbContexts.Schedule;
public interface IDayDbContext : IDbContextBase
public interface IDisciplineDbContext : IDbContextBase
{
DbSet<Day> Days { get; set; }
DbSet<Discipline> Disciplines { get; set; }
}

View File

@ -3,7 +3,7 @@ using Mirea.Api.DataAccess.Domain.Schedule;
namespace Mirea.Api.DataAccess.Application.Interfaces.DbContexts.Schedule;
public interface IProfessorToLessonDbContext : IDbContextBase
public interface ILessonAssociationDbContext : IDbContextBase
{
DbSet<ProfessorToLesson> ProfessorToLessons { get; set; }
DbSet<LessonAssociation> LessonAssociations { get; set; }
}

View File

@ -1,9 +0,0 @@
using Microsoft.EntityFrameworkCore;
using Mirea.Api.DataAccess.Domain.Schedule;
namespace Mirea.Api.DataAccess.Application.Interfaces.DbContexts.Schedule;
public interface ILessonToTypeOfOccupationDbContext : IDbContextBase
{
DbSet<LessonToTypeOfOccupation> LessonToTypeOfOccupations { get; set; }
}