예제 #1
0
 void RegisterMultipleEndpoints(ServiceCollection endPoints, int count)
 {
     endPoints.MapStorageEndPoint(typeof(IExampleImplementation), typeof(ExampleImplementation));
     endPoints.MapStorageEndPoint(typeof(IOtherExampleImplementation), typeof(ExampleImplementation));
 }
예제 #2
0
 void RegisterEndPoints(ServiceCollection endPoints)
 {
     endPoints.MapStorageEndPoint(typeof(IExampleImplementation), typeof(ExampleImplementation));
 }