Trần Viết Sơn
feat: save temper
8b7e5fc
raw
history blame
558 Bytes
import { Injectable } from '@nestjs/common';
import { BranchDto } from './dto/create-branch.dto';
@Injectable()
export class BranchService {
create(createBranchDto: BranchDto) {
return 'This action adds a new branch';
}
findAll() {
return `This action returns all branch`;
}
findOne(id: number) {
return `This action returns a #${id} branch`;
}
update(id: number, updateBranchDto: BranchDto) {
return `This action updates a #${id} branch`;
}
remove(id: number) {
return `This action removes a #${id} branch`;
}
}