2018-05-29 19:17:16 +09:00
|
|
|
import { Injectable } from '@angular/core';
|
2018-06-04 17:25:29 +09:00
|
|
|
import { Observable } from 'rxjs';
|
2018-05-29 19:17:16 +09:00
|
|
|
import { RPCService } from '@loafer/ng-rpc';
|
|
|
|
import { MetaInfraVendor, MetaVendorCrawler } from '@overflow/commons-typescript/model/meta';
|
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class MetaVendorCrawlerService {
|
|
|
|
|
|
|
|
public constructor(
|
|
|
|
private rpcService: RPCService,
|
|
|
|
) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-06-06 00:51:49 +09:00
|
|
|
public readAllByMetaInfraVendorID(metaInfraVendorID: number): Observable<MetaVendorCrawler[]> {
|
|
|
|
return this.rpcService.call('MetaVendorCrawlerService.readAllByMetaInfraVendorID', metaInfraVendorID);
|
2018-05-29 19:17:16 +09:00
|
|
|
}
|
|
|
|
}
|