diff options
| author | transtrike <transtrike@gmail.com> | 2021-01-14 00:12:48 +0200 |
|---|---|---|
| committer | transtrike <transtrike@gmail.com> | 2021-01-14 00:12:48 +0200 |
| commit | 2948a92492141f4d807449191901f499530d8465 (patch) | |
| tree | 36d30886af22351d86d937f03558c501254ad621 /src/DevHive.Data/Interfaces/ITechnologyRepository.cs | |
| parent | d77add41838823ad50caf8d1ae5ee8e61c1bb26b (diff) | |
| download | DevHive-2948a92492141f4d807449191901f499530d8465.tar DevHive-2948a92492141f4d807449191901f499530d8465.tar.gz DevHive-2948a92492141f4d807449191901f499530d8465.zip | |
Fixed issues in Language & Technology and their interactions with User
Diffstat (limited to 'src/DevHive.Data/Interfaces/ITechnologyRepository.cs')
| -rw-r--r-- | src/DevHive.Data/Interfaces/ITechnologyRepository.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/DevHive.Data/Interfaces/ITechnologyRepository.cs b/src/DevHive.Data/Interfaces/ITechnologyRepository.cs index 7c126a4..d0de096 100644 --- a/src/DevHive.Data/Interfaces/ITechnologyRepository.cs +++ b/src/DevHive.Data/Interfaces/ITechnologyRepository.cs @@ -8,6 +8,7 @@ namespace DevHive.Data.Interfaces public interface ITechnologyRepository : IRepository<Technology> { Task<bool> DoesTechnologyExistAsync(Guid id); - Task<bool> DoesTechnologyNameExist(string technologyName); + Task<bool> DoesTechnologyNameExistAsync(string technologyName); + Task<Technology> GetByNameAsync(string name); } -}
\ No newline at end of file +} |
