mirror of
https://github.com/aditama-labs/nest-autocrud.git
synced 2025-02-08 09:08:36 +00:00
12 lines
292 B
TypeScript
12 lines
292 B
TypeScript
|
import { ListProcess } from '@autocrud/skeleton/processes/list.process';
|
||
|
|
||
|
export abstract class PrismaListProcess implements ListProcess {
|
||
|
abstract initialization();
|
||
|
abstract before();
|
||
|
abstract begin();
|
||
|
abstract process();
|
||
|
abstract end();
|
||
|
abstract after();
|
||
|
abstract result();
|
||
|
}
|