| 1234567891011121314151617 |
- const statistics = require('./statistics')
- const staffMember = require('./staff-member')
- const staffingAgency = require('./staffing-agency')
- const labor = require('./labor')
- const services = require('./services')
- const workdays = require('./workdays')
- require('./permissions')
- const { controllers: C } = require('@alancnet/material-framework/server')
- module.exports = Object.assign(C, {
- statistics,
- staffMember,
- staffingAgency,
- labor,
- services,
- workdays
- })
|