import {ISharingManager} from '../interfaces/ISharingManager'; import {SharingDTO} from '../../../common/entities/SharingDTO'; export class SharingManager implements ISharingManager { findOne(filter: any): Promise { throw new Error('not implemented'); } createSharing(sharing: SharingDTO): Promise { throw new Error('not implemented'); } updateSharing(sharing: SharingDTO): Promise { throw new Error('not implemented'); } }