aboutsummaryrefslogtreecommitdiff
path: root/src/Data/DevHive.Data/Interfaces
diff options
context:
space:
mode:
authortranstrike <transtrike@gmail.com>2021-03-25 12:22:54 +0200
committertranstrike <transtrike@gmail.com>2021-03-25 12:22:54 +0200
commitd53caaea6094136bac3d01ce9dd2782bb1819fe2 (patch)
tree0c15e12d9a694600a51070295b0358cee1463545 /src/Data/DevHive.Data/Interfaces
parent9b04b4f2b031a3c631dba65908f277996015ae05 (diff)
downloadDevHive-d53caaea6094136bac3d01ce9dd2782bb1819fe2.tar
DevHive-d53caaea6094136bac3d01ce9dd2782bb1819fe2.tar.gz
DevHive-d53caaea6094136bac3d01ce9dd2782bb1819fe2.zip
Profile Picture implemented; Tests and Front end work await
Diffstat (limited to 'src/Data/DevHive.Data/Interfaces')
-rw-r--r--src/Data/DevHive.Data/Interfaces/IProfilePictureRepository.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Data/DevHive.Data/Interfaces/IProfilePictureRepository.cs b/src/Data/DevHive.Data/Interfaces/IProfilePictureRepository.cs
new file mode 100644
index 0000000..45beaa0
--- /dev/null
+++ b/src/Data/DevHive.Data/Interfaces/IProfilePictureRepository.cs
@@ -0,0 +1,11 @@
+using System;
+using System.Threading.Tasks;
+using DevHive.Data.Models;
+
+namespace DevHive.Data.Interfaces
+{
+ public interface IProfilePictureRepository : IRepository<ProfilePicture>
+ {
+ Task<ProfilePicture> GetByURLAsync(string picUrl);
+ }
+}