Guest User

Untitled

a guest
Dec 16th, 2017
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. namespace MassTransit.ExtensionsDependencyInjectionIntegration
  2. {
  3. using Automatonymous;
  4.  
  5. public interface IMyServiceCollectionConfigurator
  6. {
  7. void AddStateMachineSaga<T, TInstance>(T sm)
  8. where T : class, SagaStateMachine<TInstance>
  9. where TInstance : class, SagaStateMachineInstance;
  10. }
  11. }
Add Comment
Please, Sign In to add comment