Exemplo n.º 1
0
 void RegisterMultipleEndpoints(ServiceCollection endPoints, int count)
 {
     endPoints.MapStorageEndPoint(typeof(IExampleImplementation), typeof(ExampleImplementation));
     endPoints.MapStorageEndPoint(typeof(IOtherExampleImplementation), typeof(ExampleImplementation));
 }
Exemplo n.º 2
0
 void RegisterEndPoints(ServiceCollection endPoints)
 {
     endPoints.MapStorageEndPoint(typeof(IExampleImplementation), typeof(ExampleImplementation));
 }