Files
GKNB_MSTM071/Backend/elso gyakorlat/src/Domain/IPostRepository.js
T
2026-02-13 19:14:10 +01:00

26 lines
490 B
JavaScript

export class IPostRepository {
async getAll() {
throw new Error('Method not implemented');
}
async getById(id) {
throw new Error('Method not implemented');
}
async getByUserId(userId) {
throw new Error('Method not implemented');
}
async create(post) {
throw new Error('Method not implemented');
}
async update(id, postData) {
throw new Error('Method not implemented');
}
async delete(id) {
throw new Error('Method not implemented');
}
}