예제 #1
0
 public PrivateOrderService(ISyncLocalStorageService localStorage, GrpcChannel channel)
 {
     this.localStorage  = localStorage;
     orderServiceClient = new GrpcOrderService.GrpcOrderServiceClient(channel);
 }
예제 #2
0
 public OrderService(ISyncLocalStorageService localStorage, CartService cartService, GrpcChannel channel)
 {
     this.localStorage  = localStorage;
     this.cartService   = cartService;
     orderServiceClient = new GrpcOrderService.GrpcOrderServiceClient(channel);
 }