Last active
December 29, 2015 15:12
-
-
Save orjan/9179135 to your computer and use it in GitHub Desktop.
Autofac Mediator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
builder.RegisterAssemblyTypes(new[] {Assembly.GetExecutingAssembly()}) | |
.Where(type => type.IsAssignableFrom(typeof (IQueryHandler<,>))) | |
.AsImplementedInterfaces(); | |
*/ | |
public class Mediator : IMediator | |
{ | |
private readonly ILifetimeScope lifetimeScope; | |
public Mediator(ILifetimeScope lifetimeScope) | |
{ | |
if (lifetimeScope == null) throw new ArgumentNullException("lifetimeScope"); | |
this.lifetimeScope = lifetimeScope; | |
} | |
public TResponse Request<TResponse>(IQuery<TResponse> query) | |
{ | |
var resolve = lifetimeScope.Resolve(typeof(IQueryHandler<,>).MakeGenericType(new[] { query.GetType(), typeof(TResponse)})); | |
return (TResponse) resolve.GetType().GetMethod("Handle").Invoke(resolve, new object[] { query }); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment