diff options
Diffstat (limited to 'src/Data/DevHive.Data/Interfaces/IPostRepository.cs')
| -rw-r--r-- | src/Data/DevHive.Data/Interfaces/IPostRepository.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Data/DevHive.Data/Interfaces/IPostRepository.cs b/src/Data/DevHive.Data/Interfaces/IPostRepository.cs index c24d596..5a04aed 100644 --- a/src/Data/DevHive.Data/Interfaces/IPostRepository.cs +++ b/src/Data/DevHive.Data/Interfaces/IPostRepository.cs @@ -10,7 +10,7 @@ namespace DevHive.Data.Interfaces { Task<bool> AddNewPostToCreator(Guid userId, Post post); - Task<Post> GetPostByCreatorAndTimeCreatedAsync(Guid issuerId, DateTime timeCreated); + Task<Post> GetPostByCreatorAndTimeCreatedAsync(Guid creatorId, DateTime timeCreated); Task<List<string>> GetFileUrls(Guid postId); Task<bool> DoesPostExist(Guid postId); |
