We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42aad30 commit 10be9c0Copy full SHA for 10be9c0
1 file changed
HwProj.CoursesService/HwProj.CoursesService.API/Services/ICourseFilterService.cs
@@ -1,4 +1,3 @@
1
-using System.Collections.Generic;
2
using System.Threading.Tasks;
3
using HwProj.CoursesService.API.Models;
4
using HwProj.Models.CoursesService;
@@ -16,6 +15,6 @@ public interface ICourseFilterService
16
15
Task<CourseDTO> ApplyFilter(CourseDTO courseDto, string userId);
17
Task<MentorToAssignedStudentsDTO[]> GetAssignedStudentsIds(long courseId, string[] mentorsIds);
18
Task UpdateGroupFilters(long courseId, long homeworkId, Group group);
19
- Task AddToFilter(long courseId, string filterId, Filter filter);
+ Task AddToFilter(long courseId, string userId, Filter filter);
20
}
21
0 commit comments