Skip to content

Commit 10be9c0

Browse files
committed
fix: new method interface
1 parent 42aad30 commit 10be9c0

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

HwProj.CoursesService/HwProj.CoursesService.API/Services/ICourseFilterService.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
using System.Collections.Generic;
21
using System.Threading.Tasks;
32
using HwProj.CoursesService.API.Models;
43
using HwProj.Models.CoursesService;
@@ -16,6 +15,6 @@ public interface ICourseFilterService
1615
Task<CourseDTO> ApplyFilter(CourseDTO courseDto, string userId);
1716
Task<MentorToAssignedStudentsDTO[]> GetAssignedStudentsIds(long courseId, string[] mentorsIds);
1817
Task UpdateGroupFilters(long courseId, long homeworkId, Group group);
19-
Task AddToFilter(long courseId, string filterId, Filter filter);
18+
Task AddToFilter(long courseId, string userId, Filter filter);
2019
}
2120
}

0 commit comments

Comments
 (0)