import { Injectable, Injector } from '@angular/core'; import { BaseService } from 'src/app/shared/services'; @Injectable({ providedIn: 'root' }) export class TicketService extends BaseService { $api_get_getPremiumInformationPage = `/api/sdc/billOperate/listPremiumInformationPage`; constructor(public injector: Injector) { super(injector); } }