export const Delete: (config: string | tenp.DeleteInterface) => any = (config: string | tenp.DeleteInterface): any => {
    return (target: any, propertyKey: string) => {
        forwardMethod(target, propertyKey, 'delete',  config);
    }
}