Example #1
0
        public QuickStart(GrpcClient client)
        {
            grpcClient = client;

            connectSvc = new ConnectSvc(grpcClient.GetChannel());
            deviceSvc  = new DeviceSvc(grpcClient.GetChannel());
            userSvc    = new UserSvc(grpcClient.GetChannel());
            fingerSvc  = new FingerSvc(grpcClient.GetChannel());
            cardSvc    = new CardSvc(grpcClient.GetChannel());
            eventSvc   = new EventSvc(grpcClient.GetChannel());
        }
Example #2
0
 public EventTest(EventSvc svc)
 {
     eventSvc = svc;
 }