Billing.Payments.PaymentAccepted.EndpointConfig.Init C# (CSharp) 메소드

Init() 공개 메소드

public Init ( ) : void
리턴 void
        public void Init()
        {
            Configure.With()
                     .DefiningCommandsAs(t => t.Namespace != null && t.Namespace.Contains("Commands"))
                     .DefiningEventsAs(t => t.Namespace != null && t.Namespace.Contains("Events"));
        }
    }
EndpointConfig