9 lines
No EOL
283 B
C#
9 lines
No EOL
283 B
C#
using System;
|
|
|
|
namespace PhoenixLib.ServiceBus.Routing
|
|
{
|
|
internal class RoutingInformationFactory : IRoutingInformationFactory
|
|
{
|
|
public IRoutingInformation Create(Type type, string topic, string eventType) => new RoutingInformation(type, topic, eventType);
|
|
}
|
|
} |