feature-libs/asm/core/connectors/asm.adapter.ts
Methods |
|
| Abstract customerSearch | ||||||
customerSearch(options: CustomerSearchOptions)
|
||||||
|
Abstract function used to search for customers.
Parameters :
Returns :
Observable<CustomerSearchPage>
|
import { Observable } from 'rxjs';
import {
CustomerSearchOptions,
CustomerSearchPage,
} from '../models/asm.models';
export abstract class AsmAdapter {
/**
* Abstract function used to search for customers.
*/
abstract customerSearch(
options: CustomerSearchOptions
): Observable<CustomerSearchPage>;
}