index.js 444 B

12345678910111213141516
  1. const statistics = require('./statistics')
  2. const staffMember = require('./staff-member')
  3. const staffingAgency = require('./staffing-agency')
  4. const labor = require('./labor')
  5. const services = require('./services')
  6. const workdays = require('./workdays')
  7. const { controllers: C } = require('@alancnet/material-framework/server')
  8. module.exports = Object.assign(C, {
  9. statistics,
  10. staffMember,
  11. staffingAgency,
  12. labor,
  13. services,
  14. workdays
  15. })