member_webapp/@overflow/meta/service/meta-sensor-item-unit.service.ts

19 lines
473 B
TypeScript
Raw Normal View History

2018-05-29 10:17:16 +00:00
import { Injectable } from '@angular/core';
2018-06-04 08:25:29 +00:00
import { Observable } from 'rxjs';
2018-05-29 10:17:16 +00:00
import { RPCService } from '@loafer/ng-rpc';
import { MetaCrawler, MetaSensorItemUnit } from '@overflow/commons-typescript/model/meta';
@Injectable()
export class MetaSensorItemUnitService {
public constructor(
private rpcService: RPCService,
) {
}
public readAll(): Observable<MetaSensorItemUnit[]> {
return this.rpcService.call('MetaSensorItemUnitService.readAll');
}
}