From 5595bf9abe7b3d495f36ef39cfa5236dbde86039 Mon Sep 17 00:00:00 2001 From: transtrike Date: Wed, 7 Apr 2021 19:56:55 +0300 Subject: Added adding & removing friends funtionality & endpoints for them --- .../Repositories/FriendshipRepository.cs | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 src/Data/DevHive.Data/Repositories/FriendshipRepository.cs (limited to 'src/Data/DevHive.Data/Repositories/FriendshipRepository.cs') diff --git a/src/Data/DevHive.Data/Repositories/FriendshipRepository.cs b/src/Data/DevHive.Data/Repositories/FriendshipRepository.cs deleted file mode 100644 index 94fdec3..0000000 --- a/src/Data/DevHive.Data/Repositories/FriendshipRepository.cs +++ /dev/null @@ -1,20 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using DevHive.Data.Models; - -namespace DevHive.Data.Repositories -{ - public class FriendshipRepository : BaseRepository - { - private readonly DevHiveContext _context; - - public FriendshipRepository(DevHiveContext context) - : base(context) - { - this._context = context; - } - } -} -- cgit v1.2.3