From 6335fb13ef757877c87e4ffd1682ebc0806d6d72 Mon Sep 17 00:00:00 2001 From: Max <51083570+DRdrProfessor@users.noreply.github.com> Date: Sun, 27 Aug 2023 21:12:06 +0200 Subject: [PATCH] Removed dependencies, working in interface --- SharpRss/Interfaces/IDbAccess.cs | 7 +++++++ SharpRss/SharpRss.csproj | 2 -- WebSharpRSS/WebSharpRSS.csproj | 1 + 3 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 SharpRss/Interfaces/IDbAccess.cs diff --git a/SharpRss/Interfaces/IDbAccess.cs b/SharpRss/Interfaces/IDbAccess.cs new file mode 100644 index 0000000..64bae20 --- /dev/null +++ b/SharpRss/Interfaces/IDbAccess.cs @@ -0,0 +1,7 @@ +namespace SharpRss.Interfaces +{ + public interface IDbAccess + { + + } +} \ No newline at end of file diff --git a/SharpRss/SharpRss.csproj b/SharpRss/SharpRss.csproj index f57dac4..b19521c 100644 --- a/SharpRss/SharpRss.csproj +++ b/SharpRss/SharpRss.csproj @@ -14,8 +14,6 @@ - - diff --git a/WebSharpRSS/WebSharpRSS.csproj b/WebSharpRSS/WebSharpRSS.csproj index 419fa4c..b66b556 100644 --- a/WebSharpRSS/WebSharpRSS.csproj +++ b/WebSharpRSS/WebSharpRSS.csproj @@ -18,6 +18,7 @@ +