|
@@ -76,6 +76,12 @@ class JsonRpcProxy {
|
|
|
ConnectService get connect =>
|
|
|
findService(() => new ConnectService(currentHostAddress));
|
|
|
|
|
|
+ LockService get lock =>
|
|
|
+ findService(() => new LockService(currentHostAddress));
|
|
|
+
|
|
|
+ LoginService get login =>
|
|
|
+ findService(() => new LoginService(currentHostAddress));
|
|
|
+
|
|
|
DeviceService get device =>
|
|
|
findService(() => new DeviceService(currentHostAddress));
|
|
|
|
|
@@ -85,12 +91,6 @@ class JsonRpcProxy {
|
|
|
IdentityApplyService get identityApply =>
|
|
|
findService(() => new IdentityApplyService(currentHostAddress));
|
|
|
|
|
|
- LockService get lock =>
|
|
|
- findService(() => new LockService(currentHostAddress));
|
|
|
-
|
|
|
- LoginService get login =>
|
|
|
- findService(() => new LoginService(currentHostAddress));
|
|
|
-
|
|
|
OrganizationService get organization =>
|
|
|
findService(() => new OrganizationService(currentHostAddress));
|
|
|
|