diff options
| author | Danail Dimitrov <danaildimitrov321@gmail.com> | 2021-02-04 18:50:19 +0200 |
|---|---|---|
| committer | Danail Dimitrov <danaildimitrov321@gmail.com> | 2021-02-04 18:50:19 +0200 |
| commit | 7d288f0a353c0bf075f5bcb4d9fd44aac121c912 (patch) | |
| tree | 6f4e4ee8de64f015076b3e1005720300130c9b2b /src/DevHive.Data/Repositories/CommentRepository.cs | |
| parent | 5d6e3c5518fdbace4b049f9043fb140e150fdaa6 (diff) | |
| parent | ebf48cc5ad48199f0af9b8535c395b28f32b73a6 (diff) | |
| download | DevHive-7d288f0a353c0bf075f5bcb4d9fd44aac121c912.tar DevHive-7d288f0a353c0bf075f5bcb4d9fd44aac121c912.tar.gz DevHive-7d288f0a353c0bf075f5bcb4d9fd44aac121c912.zip | |
Merge branch 'dev' of https://github.com/Team-Kaleidoscope/DevHive into dev
Diffstat (limited to 'src/DevHive.Data/Repositories/CommentRepository.cs')
| -rw-r--r-- | src/DevHive.Data/Repositories/CommentRepository.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/DevHive.Data/Repositories/CommentRepository.cs b/src/DevHive.Data/Repositories/CommentRepository.cs index 382c666..bee7624 100644 --- a/src/DevHive.Data/Repositories/CommentRepository.cs +++ b/src/DevHive.Data/Repositories/CommentRepository.cs @@ -28,6 +28,9 @@ namespace DevHive.Data.Repositories .FirstOrDefaultAsync(x => x.Id == id); } + /// <summary> + /// This method returns the comment that is made at exactly the given time and by the given creator + /// </summary> public async Task<Comment> GetCommentByIssuerAndTimeCreatedAsync(Guid issuerId, DateTime timeCreated) { return await this._context.Comments |
