Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@orjan
Last active December 29, 2015 15:12
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save orjan/9179135 to your computer and use it in GitHub Desktop.
Save orjan/9179135 to your computer and use it in GitHub Desktop.
Autofac Mediator
/*
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