Skip to content

Latest commit

 

History

History
18 lines (9 loc) · 240 Bytes

File metadata and controls

18 lines (9 loc) · 240 Bytes

using


public class MyClientFactory: MyGrpcClientFactory
{
	public MyClientFactory(string grpcServiceUrl) : base(grpcServiceUrl)
	{}

	public IMyGrpcService GetMyGrpcService() => CreateGrpcService<IMyGrpcService>();
}