You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public class MySaga : IStatefulSaga
{
public void Orchastrates(EventBaseType typeA)
{
}
public void Orchastrates(EventUsingType typeB)
{
}
}
public class EventUsingType : EventBaseType
{
}
In the following scenario, EventBaseType typeA will come in as null, whereas EventUsingType typeB will not be null.
The text was updated successfully, but these errors were encountered:
In the following scenario, EventBaseType typeA will come in as null, whereas EventUsingType typeB will not be null.
The text was updated successfully, but these errors were encountered: