(releaseDate: Date = new Date(), name: string, author: Author)
| 66 | author!: Ref<Author>; |
| 67 | |
| 68 | constructor(releaseDate: Date = new Date(), name: string, author: Author) { |
| 69 | this.releaseDate = releaseDate; |
| 70 | this.name = name; |
| 71 | this.author = ref(author); |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | let orm: MikroORM; |