UNPKG

restaurantt

Version:

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

20 lines (14 loc) 280 B
const { DTOCustomer } = require("./DTOCustomer"); class DTOOrder { IDOrder=0; DateO=new Date(); StateO=""; SpecialRequirement=""; NumberPeople=0 ; Customer=new DTOCustomer(); constructor() { } } module.exports = { DTOOrder };