From 81576bfdb279c4c895947b598441ed9361705ac3 Mon Sep 17 00:00:00 2001 From: Adrian Frielinghaus Date: Mon, 14 Oct 2024 18:06:11 +0200 Subject: [PATCH] no message --- .../IDtoCache.cs | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 src/Blauhaus.ClientActors.Abstractions/IDtoCache.cs diff --git a/src/Blauhaus.ClientActors.Abstractions/IDtoCache.cs b/src/Blauhaus.ClientActors.Abstractions/IDtoCache.cs deleted file mode 100644 index 67518d4..0000000 --- a/src/Blauhaus.ClientActors.Abstractions/IDtoCache.cs +++ /dev/null @@ -1,14 +0,0 @@ -using System; -using System.Threading.Tasks; -using Blauhaus.Common.Abstractions; - -namespace Blauhaus.ClientActors.Abstractions; - -public interface IDtoCache : IDtoLoader - where TDto : class, IHasId - where TId : IEquatable -{ - Task HandleAsync(TDto dto); - Task DeleteOneAsync(TId id); - Task DeleteAllAsync(); -} \ No newline at end of file