Skip to content

Commit

Permalink
add some chanegs
Browse files Browse the repository at this point in the history
  • Loading branch information
ibrohim-qosimov committed Sep 14, 2024
1 parent db4fe07 commit d002c0d
Show file tree
Hide file tree
Showing 5 changed files with 502 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ public async Task<IEnumerable<Course>> Handle(GetAllCoursesByMentorIdQuery reque
{
Id = x.Id,
Name = x.Name,
Description = x.Description,
Picture = x.Picture,
Price = x.Price,
Subtitle = x.Subtitle,
MentorId = x.MentorId
})
.ToListAsync(cancellationToken),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ public async Task<IEnumerable<Lesson>> Handle(GetAllLessonsByCourseIdQuery reque
{
Id = x.Id,
Title = x.Title,
Video = x.Video,
HomeworkDescription = x.HomeworkDescription,
CourseId = x.CourseId
})
.ToListAsync(cancellationToken),
Expand Down
Loading

0 comments on commit d002c0d

Please sign in to comment.