14 lines
330 B
TypeScript
14 lines
330 B
TypeScript
import { Injectable, Injector } from '@angular/core';
|
|
import { BaseService } from '@shared';
|
|
|
|
@Injectable({
|
|
providedIn: 'root'
|
|
})
|
|
export class AccountManagemantService extends BaseService {
|
|
|
|
$api_get_account_management_page = `/api/fcc/ficoBrmH/list/page`;
|
|
constructor(public injector: Injector) {
|
|
super(injector)
|
|
}
|
|
}
|