mirror of
https://github.com/aditama-labs/nest-autocrud.git
synced 2025-05-04 20:39:53 +00:00
14 lines
352 B
TypeScript
14 lines
352 B
TypeScript
import { PartialBatchUpdateProcess } from '@autocrud/skeleton/processes/partial/batch/update.process';
|
|
|
|
export abstract class PrismaPartialBatchUpdateProcess
|
|
implements PartialBatchUpdateProcess
|
|
{
|
|
abstract initialization();
|
|
abstract before();
|
|
abstract begin();
|
|
abstract process();
|
|
abstract end();
|
|
abstract after();
|
|
abstract result();
|
|
}
|