UNPKG

restaurantt

Version:

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

24 lines (15 loc) 386 B
const { DTOOrderDetail } = require("./DTOOrderDetail"); class DTOBill { IDBilll=0; DateB=new Date(); SubtotalB=0; TotalB=0; VATB=0; StateB=""; DetailOrder=new DTOOrderDetail(); constructor() { } } module.exports = { DTOBill };