public PublicSupplierService(GrpcChannel channel)
 {
     supplierServiceClient = new GrpcSupplierService.GrpcSupplierServiceClient(channel);
 }
Exemple #2
0
 public PrivateSupplierService(GrpcChannel channel, ISyncLocalStorageService localStorage)
 {
     supplierServiceClient = new GrpcSupplierService.GrpcSupplierServiceClient(channel);
     this.localStorage     = localStorage;
 }
 public SuppliersManagerService(ISyncLocalStorageService localStorage, GrpcChannel channel)
 {
     this.localStorage     = localStorage;
     supplierServiceClient = new GrpcSupplierService.GrpcSupplierServiceClient(channel);
 }
Exemple #4
0
 public UserSignUpService(GrpcChannel channel)
 {
     signUpServiceClient   = new GrpcSignUpService.GrpcSignUpServiceClient(channel);
     supplierServiceClient = new GrpcSupplierService.GrpcSupplierServiceClient(channel);
 }