katoikia-app/servicio-foro-comunicaciones/src/post-comments/post-comments.service.ts

27 lines
709 B
TypeScript
Raw Normal View History

import { Injectable } from '@nestjs/common';
import { CreatePostCommentDto } from './dto/create-post-comment.dto';
import { UpdatePostCommentDto } from './dto/update-post-comment.dto';
@Injectable()
export class PostCommentsService {
create(createPostCommentDto: CreatePostCommentDto) {
return 'This action adds a new postComment';
}
findAll() {
return `This action returns all postComments`;
}
findOne(id: number) {
return `This action returns a #${id} postComment`;
}
update(id: number, updatePostCommentDto: UpdatePostCommentDto) {
return `This action updates a #${id} postComment`;
}
remove(id: number) {
return `This action removes a #${id} postComment`;
}
}