diff options
| author | transtrike <transtrike@gmail.com> | 2021-02-13 18:36:25 +0200 |
|---|---|---|
| committer | transtrike <transtrike@gmail.com> | 2021-02-13 18:36:25 +0200 |
| commit | 018e9d303c38407589f06ec37a4a72dc4ce8e3b4 (patch) | |
| tree | 05387c66338796a4c207c3bcbeca454329a28120 /src/Data/DevHive.Data/Repositories/CommentRepository.cs | |
| parent | d9b9685204ece098df5a2425246a10bf65004b0f (diff) | |
| download | DevHive-018e9d303c38407589f06ec37a4a72dc4ce8e3b4.tar DevHive-018e9d303c38407589f06ec37a4a72dc4ce8e3b4.tar.gz DevHive-018e9d303c38407589f06ec37a4a72dc4ce8e3b4.zip | |
Merged New Project Structure; Fixed Kamen's Formatting Issues
Diffstat (limited to 'src/Data/DevHive.Data/Repositories/CommentRepository.cs')
| -rw-r--r-- | src/Data/DevHive.Data/Repositories/CommentRepository.cs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/Data/DevHive.Data/Repositories/CommentRepository.cs b/src/Data/DevHive.Data/Repositories/CommentRepository.cs index c63fe65..9364776 100644 --- a/src/Data/DevHive.Data/Repositories/CommentRepository.cs +++ b/src/Data/DevHive.Data/Repositories/CommentRepository.cs @@ -1,6 +1,5 @@ using System; using System.Collections.Generic; -using System.ComponentModel; using System.Linq; using System.Threading.Tasks; using DevHive.Data.Interfaces; @@ -29,8 +28,8 @@ namespace DevHive.Data.Repositories } /// <summary> - /// This method returns the comment that is made at exactly the given time and by the given creator - /// </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 |
