26 lines
497 B
TypeScript
26 lines
497 B
TypeScript
import { HttpContextContract } from '@ioc:Adonis/Core/HttpContext'
|
|
|
|
export default class EmployeesController {
|
|
public async index ({}: HttpContextContract) {
|
|
|
|
}
|
|
|
|
public async create ({}: HttpContextContract) {
|
|
}
|
|
|
|
public async store ({}: HttpContextContract) {
|
|
}
|
|
|
|
public async show ({}: HttpContextContract) {
|
|
}
|
|
|
|
public async edit ({}: HttpContextContract) {
|
|
}
|
|
|
|
public async update ({}: HttpContextContract) {
|
|
}
|
|
|
|
public async destroy ({}: HttpContextContract) {
|
|
}
|
|
}
|