import {of as observableOf, Observable } from 'rxjs'; // import { Data, testData } from '../models'; // import { Logon, User } from '../shared/modal/user'; // import { IWCToken, INotification } from '../shared/modal/common'; // import { Customer, ICreditCheck } from '../shared/modal/customer'; import { moreInfoResponse } from '../shared/spec.constants'; import { sortByResponse } from '../shared/mock-data'; export class CatalogServiceStub { getProductMoreInfo(storeId: number, productId: string): Observable { return observableOf(moreInfoResponse); } getRateplansByZipCode( storeId: number, zipCode: string, marketCode: string, productType: string, deviceSKU: string, accountNumber: number, accountType: string, isNCFPlan: boolean, isTIPlan: boolean, numberOfVoiceLines: number, hasDuplicateLines: boolean, dateOfBirth: string, orderId: number): Observable { return observableOf(sortByResponse); } getDevicesByRateplan(storeId: number, rateplanSOC: string, productType: string): Observable { return observableOf(sortByResponse); } }