diff options
| author | transtrike <transtrike@gmail.com> | 2021-01-15 19:39:56 +0200 |
|---|---|---|
| committer | transtrike <transtrike@gmail.com> | 2021-01-15 19:39:56 +0200 |
| commit | 64d29a657d7736fc970ae3ea2b0a9217cd406a64 (patch) | |
| tree | b853f29763bdfcd33902c6b2e74d02b59398c31b /src/DevHive.Data/Interfaces | |
| parent | f7736c1ff8ad357ed3dc6f44e16106cc99fadf95 (diff) | |
| download | DevHive-64d29a657d7736fc970ae3ea2b0a9217cd406a64.tar DevHive-64d29a657d7736fc970ae3ea2b0a9217cd406a64.tar.gz DevHive-64d29a657d7736fc970ae3ea2b0a9217cd406a64.zip | |
Renamed AddFriend to AddFriendToUser to clarify method
Diffstat (limited to 'src/DevHive.Data/Interfaces')
| -rw-r--r-- | src/DevHive.Data/Interfaces/Repositories/IUserRepository.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DevHive.Data/Interfaces/Repositories/IUserRepository.cs b/src/DevHive.Data/Interfaces/Repositories/IUserRepository.cs index 3a22911..eca6adb 100644 --- a/src/DevHive.Data/Interfaces/Repositories/IUserRepository.cs +++ b/src/DevHive.Data/Interfaces/Repositories/IUserRepository.cs @@ -8,7 +8,7 @@ namespace DevHive.Data.Interfaces.Repositories { public interface IUserRepository : IRepository<User> { - Task<bool> AddFriendAsync(User user, User friend); + Task<bool> AddFriendToUserAsync(User user, User friend); Task<bool> AddLanguageToUserAsync(User user, Language language); Task<bool> AddTechnologyToUserAsync(User user, Technology technology); |
