diff --git a/src/IronHook.Core/Abstractions/IIronHookContext.cs b/src/IronHook.Core/Abstractions/IIronHookContext.cs index 243d27d..570d382 100644 --- a/src/IronHook.Core/Abstractions/IIronHookContext.cs +++ b/src/IronHook.Core/Abstractions/IIronHookContext.cs @@ -1,4 +1,5 @@ -using System; +using IronHook.Core.Entities; +using System; using System.Collections.Generic; using System.Linq; using System.Text; @@ -35,5 +36,33 @@ public interface IIronHookContext /// Task /// Task InsertAsync(T entity) where T : class; + + /// + /// Update Entity + /// + /// + /// Type of Entity + /// + /// + /// Entity + /// + /// + /// Task + /// + Task UpdateAsync(T entity) where T : class; + + /// + /// Delete + /// + /// + /// Type of Entity + /// + /// + /// Entity + /// + /// + /// Task + /// + Task DeleteAsync(T entity) where T : class; } }