- Timestamp:
- 12/10/25 13:45:42 (10 months ago)
- Branches:
- master
- Children:
- 70a9f6d
- Parents:
- 2d64b2e (diff), 691f152 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - git-author:
- Stefan Saveski <76560180+stefansaveski@…> (12/10/25 13:45:42)
- git-committer:
- GitHub <noreply@…> (12/10/25 13:45:42)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
iknow-api/Repository/Implementations/UserRepository.cs
r2d64b2e r33c69d6 63 63 return await _context.User.CountAsync(); 64 64 } 65 public async Task<List<EnrolledSemesters>> GetUserSemestersAsync(int id) 66 { 67 return await _context.EnrolledSemesters 68 .Include(es => es.Major) 69 .Where(es => es.UserId == id) 70 .ToListAsync(); 71 } 65 72 66 73 }
Note:
See TracChangeset
for help on using the changeset viewer.
