Release v1.0.0 #16
.gitea/workflows
ApiDto
ApiDto.csproj
Responses
Application
Application.csprojDependencyInjection.cs
Backend.slnCommon
Behaviors
Exceptions
Mappings
Cqrs
Campus
Queries
Discipline
Queries
Faculty
Queries
Group
Queries
LectureHall
Queries
Professor
Queries
Schedule
Interfaces
Domain/Schedule
Campus.csDiscipline.csFaculty.csGroup.csLectureHall.csLesson.csLessonAssociation.csProfessor.csTypeOfOccupation.cs
Endpoint
Common
Configuration
Controllers
BaseController.cs
Endpoint.csprojProgram.csV1
BaseControllerV1.csCampusController.csDisciplineController.csFacultyController.csGroupController.csLectureHallController.csProfessorController.cs
WeatherForecastController.csProperties
WeatherForecast.csPersistence
Contexts
Schedule
EntityTypeConfigurations
Schedule
Properties
UberDbContext.cs@ -46,9 +46,11 @@ public class GetScheduleListQueryHandler(ILessonDbContext dbContext) : IRequestH
|
|||||||
DayOfWeek = l.DayOfWeek,
|
DayOfWeek = l.DayOfWeek,
|
||||||
PairNumber = l.PairNumber,
|
PairNumber = l.PairNumber,
|
||||||
IsEven = l.IsEven,
|
IsEven = l.IsEven,
|
||||||
Discipline = l.Discipline!.Name,
|
|
||||||
TypeOfOccupation = l.TypeOfOccupation!.ShortName,
|
TypeOfOccupation = l.TypeOfOccupation!.ShortName,
|
||||||
|
|
||||||
|
Discipline = l.Discipline!.Name,
|
||||||
|
DisciplineId = l.DisciplineId,
|
||||||
|
|
||||||
Group = l.Group!.Name,
|
Group = l.Group!.Name,
|
||||||
GroupId = l.GroupId,
|
GroupId = l.GroupId,
|
||||||
|
|
||||||
|
@ -28,6 +28,11 @@ public class ScheduleLookupDto
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public required string Discipline { get; set; }
|
public required string Discipline { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets or sets the ID of the discipline.
|
||||||
|
/// </summary>
|
||||||
|
public required int DisciplineId { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the type of occupation.
|
/// Gets or sets the type of occupation.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
Reference in New Issue
Block a user