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
protected TE MakeEvent<TE>(Command command) | |
where TE : Event | |
{ | |
return MakeEvent<TE>(command, new List<object>()); | |
} | |
private TE MakeEvent<TE>(Command command, IEnumerable<object> additionalParams) | |
where TE : Event | |
{ | |
var type = typeof(TE); |
NewerOlder