UNPKG

restaurantt

Version:

This package contains a backend of what would be the logic of a restaurant software

17 lines (12 loc) 290 B
const { DTOCustomer } = require("./DTOCustomer"); const { DTOTable } = require("./DTOTable"); class DTOTableCustomer { IDTableC=0; Table=new DTOTable(); Customer=new DTOCustomer(); constructor() { } } module.exports = { DTOTableCustomer };