Ejemplo n.º 1
0
 public DiscountGrpcService(DiscountProtoServiceClient discountProtoService)
 {
     _discountProtoService = discountProtoService ?? throw new ArgumentNullException(nameof(discountProtoService));
 }
Ejemplo n.º 2
0
 public DiscountGrpcService(DiscountProtoServiceClient discountProtoService, ILogger <DiscountGrpcService> logger)
 {
     _discountProtoService = discountProtoService ?? throw new ArgumentNullException(nameof(discountProtoService));
     _logger = logger ?? throw new ArgumentNullException(nameof(logger));
 }