diff options
| author | Syndamia <kamen.d.mladenov@protonmail.com> | 2020-12-15 19:41:55 +0200 |
|---|---|---|
| committer | Syndamia <kamen.d.mladenov@protonmail.com> | 2020-12-15 19:41:55 +0200 |
| commit | d64d699630bb68b51190df72b72ea94640668dfc (patch) | |
| tree | 172fb9d87356f49fbd4b20de7967f9bd13f0cfb8 | |
| parent | 85b41def10318ff04e72991008ba7d0e623a7674 (diff) | |
| download | DevHive-d64d699630bb68b51190df72b72ea94640668dfc.tar DevHive-d64d699630bb68b51190df72b72ea94640668dfc.tar.gz DevHive-d64d699630bb68b51190df72b72ea94640668dfc.zip | |
Fixed RoleRepository
| -rw-r--r-- | src/DevHive.Data/Repositories/RoleRepository.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DevHive.Data/Repositories/RoleRepository.cs b/src/DevHive.Data/Repositories/RoleRepository.cs index 5ddadab..1c40b04 100644 --- a/src/DevHive.Data/Repositories/RoleRepository.cs +++ b/src/DevHive.Data/Repositories/RoleRepository.cs @@ -13,7 +13,7 @@ namespace DevHive.Data.Repositories } //Find entity by id - public async Task<TEntity> GetByIdAsync(Guid id) + public async Task<Role> GetByIdAsync(Guid id) { throw new NotImplementedException(); } |
