diff options
Diffstat (limited to 'src/DevHive.Services/Interfaces/IUserService.cs')
| -rw-r--r-- | src/DevHive.Services/Interfaces/IUserService.cs | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/DevHive.Services/Interfaces/IUserService.cs b/src/DevHive.Services/Interfaces/IUserService.cs index 5ef141f..51e3cf9 100644 --- a/src/DevHive.Services/Interfaces/IUserService.cs +++ b/src/DevHive.Services/Interfaces/IUserService.cs @@ -2,8 +2,6 @@ using System; using System.Threading.Tasks; using DevHive.Common.Models.Identity; using DevHive.Services.Models.Identity.User; -using DevHive.Services.Models.Language; -using DevHive.Services.Models.Technology; namespace DevHive.Services.Interfaces { @@ -12,19 +10,12 @@ namespace DevHive.Services.Interfaces Task<TokenModel> LoginUser(LoginServiceModel loginModel); Task<TokenModel> RegisterUser(RegisterServiceModel registerModel); - Task<bool> AddFriend(Guid userId, Guid friendId); - Task<bool> AddLanguageToUser(Guid userId, LanguageServiceModel languageServiceModel); - Task<bool> AddTechnologyToUser(Guid userId, TechnologyServiceModel technologyServiceModel); - - Task<UserServiceModel> GetFriendById(Guid friendId); + Task<UserServiceModel> GetUserByUsername(string username); Task<UserServiceModel> GetUserById(Guid id); Task<UserServiceModel> UpdateUser(UpdateUserServiceModel updateModel); Task DeleteUser(Guid id); - Task<bool> RemoveFriend(Guid userId, Guid friendId); - Task<bool> RemoveLanguageFromUser(Guid userId, LanguageServiceModel languageServiceModel); - Task<bool> RemoveTechnologyFromUser(Guid userId, TechnologyServiceModel technologyServiceModel); Task<bool> ValidJWT(Guid id, string rawTokenData); } |
