Compare commits
No commits in common. "lazygit-test" and "main" have entirely different histories.
lazygit-te
...
main
1 changed files with 17 additions and 22 deletions
|
@ -5,30 +5,25 @@ import { Cat } from "./cats.entity";
|
|||
|
||||
@Injectable()
|
||||
export class CatsService {
|
||||
constructor(
|
||||
@InjectRepository(Cat)
|
||||
private catsRepository: Repository<Cat>,
|
||||
) { }
|
||||
constructor(
|
||||
@InjectRepository(Cat)
|
||||
private catsRepository: Repository<Cat>,
|
||||
) {}
|
||||
|
||||
private readonly logger = new Logger(CatsService.name);
|
||||
private readonly logger = new Logger(CatsService.name);
|
||||
|
||||
findAll(): Promise<Cat[]> {
|
||||
this.logger.log("[findAll] Starting...");
|
||||
return this.catsRepository.find();
|
||||
}
|
||||
findAll(): Promise<Cat[]> {
|
||||
this.logger.log("[findAll] Starting...");
|
||||
return this.catsRepository.find();
|
||||
}
|
||||
|
||||
findOne(id: number): Promise<Cat | null> {
|
||||
this.logger.log("[findOne] Starting...");
|
||||
return this.catsRepository.findOneBy({ id });
|
||||
}
|
||||
findOne(id: number): Promise<Cat | null> {
|
||||
this.logger.log("[findOne] Starting...");
|
||||
return this.catsRepository.findOneBy({ id });
|
||||
}
|
||||
|
||||
async remove(id: number): Promise<void> {
|
||||
this.logger.log("[remove] Starting...");
|
||||
await this.catsRepository.delete(id)
|
||||
}
|
||||
|
||||
lazygitTest(): void {
|
||||
this.logger.log("[lazygitTest] test no. 1")
|
||||
this.logger.log("[lazygitTest] Test no. 2")
|
||||
}
|
||||
async remove(id: number): Promise<void> {
|
||||
this.logger.log("[remove] Starting...");
|
||||
await this.catsRepository.delete(id)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue