Index: iknow-api/Repository/Interface/IUserRepository.cs
===================================================================
--- iknow-api/Repository/Interface/IUserRepository.cs	(revision c1553646f0c960dc4837b0901751e525a51f5613)
+++ iknow-api/Repository/Interface/IUserRepository.cs	(revision 4708118f2e037052abbfda8409409a686e98f4da)
@@ -7,5 +7,9 @@
         Task<User?> GetUserByUsernameAsync(string username);
         Task AddUserAsync(User user);
+        Task AddContactAsync(ContactInfo contactInfo);
+        Task AddEnrollmentAsync(EnrollmentInfo enrollment);
+        Task AddHighSchoolAsync(HighSchool highSchool);
         Task<int> GetUsersCountAsync();
+        Task<User> GetUserByIdAsync(int id);
         Task<User?> GetOnlyUserByIdAsync(int id);
 
