add dtos and fix entities including migrations
This commit is contained in:
parent
ad6ee64565
commit
d94251dea4
9 changed files with 125 additions and 3 deletions
8
src/repositories/RecipeRepository.ts
Normal file
8
src/repositories/RecipeRepository.ts
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
import { AbstractRepository } from "./AbstractRepository.js";
|
||||
import { RecipeEntity } from "../entities/RecipeEntity.js";
|
||||
|
||||
export class RecipeRepository extends AbstractRepository<RecipeEntity> {
|
||||
constructor() {
|
||||
super(RecipeEntity);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue