Commit 1860425
Changed files (1)
product
client
presentation.windows
infrastructure
product/client/presentation.windows/infrastructure/AnonymousInterceptor.cs
@@ -1,20 +0,0 @@
-using System;
-using Castle.Core.Interceptor;
-
-namespace presentation.windows.infrastructure
-{
- public class AnonymousInterceptor : IInterceptor
- {
- Action<IInvocation> interceptor;
-
- public AnonymousInterceptor(Action<IInvocation> interceptor)
- {
- this.interceptor = interceptor;
- }
-
- public void Intercept(IInvocation invocation)
- {
- interceptor(invocation);
- }
- }
-}
\ No newline at end of file