diff options
| author | transtrike <transtrike@gmail.com> | 2021-02-15 21:50:36 +0200 |
|---|---|---|
| committer | transtrike <transtrike@gmail.com> | 2021-02-15 21:50:36 +0200 |
| commit | ebf488fd51a2d1a83c124c380b9a1a98d62f42a2 (patch) | |
| tree | 6d410c4dd5bba288ed86db0e86ef7d83d5fbb686 /src/Data/DevHive.Data/Interfaces/ITechnologyRepository.cs | |
| parent | 4c03712af14c37718b7be5b23fcadeb86f2a2191 (diff) | |
| download | DevHive-ebf488fd51a2d1a83c124c380b9a1a98d62f42a2.tar DevHive-ebf488fd51a2d1a83c124c380b9a1a98d62f42a2.tar.gz DevHive-ebf488fd51a2d1a83c124c380b9a1a98d62f42a2.zip | |
Fixed formatting; Adjusted warnings; Adjusted variable names
Diffstat (limited to 'src/Data/DevHive.Data/Interfaces/ITechnologyRepository.cs')
| -rw-r--r-- | src/Data/DevHive.Data/Interfaces/ITechnologyRepository.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Data/DevHive.Data/Interfaces/ITechnologyRepository.cs b/src/Data/DevHive.Data/Interfaces/ITechnologyRepository.cs index 3e55b2d..f746d9d 100644 --- a/src/Data/DevHive.Data/Interfaces/ITechnologyRepository.cs +++ b/src/Data/DevHive.Data/Interfaces/ITechnologyRepository.cs @@ -8,7 +8,7 @@ namespace DevHive.Data.Interfaces { public interface ITechnologyRepository : IRepository<Technology> { - Task<Technology> GetByNameAsync(string name); + Task<Technology> GetByNameAsync(string technologyName); HashSet<Technology> GetTechnologies(); Task<bool> DoesTechnologyExistAsync(Guid id); |
