namespace Infrastructure.Interceptors; public interface IDryRunInterceptor { void Intercept(Action action); Task InterceptAsync(Delegate action, params object[] parameters); Task InterceptAsync(Delegate action, params object[] parameters); }