declare class {{shortName}}Service extends Extensions {
    get(id: string): Promise<{}>;

    async post(body: any): Promise<{};

    async put(id: string, body: any): Promise<{};

    async del(id: string): Promise<{};
}
