cargamasviva

This commit is contained in:
arturo
2020-08-18 11:13:12 -05:00
parent afac668378
commit a4709ec7d1
118 changed files with 18679 additions and 259 deletions
+12
View File
@@ -0,0 +1,12 @@
import { Entity, OneToMany } from 'typeorm'
import { Catalogo } from './Catalogo'
import { Reservacion } from './Reservacion'
@Entity()
export class Lugar extends Catalogo {
@OneToMany(
(type) => Reservacion,
(reservacion) => reservacion.lugar
)
reservaciones: Reservacion[];
}