ntk-cms-api
Version:
Ntk Cms Api And Model For Typscript
18 lines (17 loc) • 1.23 kB
TypeScript
import { Observable } from 'rxjs';
import { ErrorExceptionResult } from '../../models/entity/base/errorExceptionResult';
import { FileCategoryModel } from '../../models/entity/file/fileCategoryModel';
import { ApiCmsServerBase } from '../base/apiCmsServerBase.service';
import { FileCompressDtoModel } from '../../models/dto/file/fileCompressDtoModel';
import { ErrorExceptionResultBase } from '../../models/entity/base/errorExceptionResultBase';
import { FilterModel } from '../../models/entity/base/filterModel';
import * as i0 from "@angular/core";
export declare class FileCategoryService extends ApiCmsServerBase<FileCategoryModel, number, FilterModel> {
getModuleControllerUrl(): string;
ServiceGetAllInCategoryById(ParentId: number): Observable<ErrorExceptionResult<FileCategoryModel>>;
ServiceCreateCompressDownload(model: FileCompressDtoModel): Observable<ErrorExceptionResultBase>;
ServiceMove(OldId: number, NewId: number): Observable<ErrorExceptionResult<FileCategoryModel>>;
ServiceOptimaze(): Observable<ErrorExceptionResultBase>;
static ɵfac: i0.ɵɵFactoryDeclaration<FileCategoryService, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<FileCategoryService>;
}