Skip to content

Instantly share code, notes, and snippets.

@vbilopav
Created September 1, 2015 14:55
Show Gist options
  • Save vbilopav/905fde152361dccfbefd to your computer and use it in GitHub Desktop.
Save vbilopav/905fde152361dccfbefd to your computer and use it in GitHub Desktop.
public interface IMyRequestResponseFactory
{
TResponse ProcessRequest<TResponse>(Request request, Func<TResponse> handler)
where TResponse : Response, new();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment