UNPKG

restaurantt

Version:

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

19 lines (14 loc) 292 B
const { DTODish } = require("./DTODish"); const { DTOOrder } = require("./DTOOrder"); class DTOOrderDetail { IDDetailO=0; QuantityDO=0; AmountDO=0; Order=new DTOOrder(); Dish=new DTODish(); constructor() { } } module.exports = { DTOOrderDetail };