wip: skeleton process

This commit is contained in:
Supan Adit Pratama 2024-10-26 18:38:45 +07:00
parent 6fa469f5d7
commit 1a00f01d41
9 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1 @@
export class BatchDeleteProcess {}

View File

@ -0,0 +1 @@
export class BatchUpdateProcess {}

View File

@ -0,0 +1,30 @@
import { Observable, of } from 'rxjs';
import { SkeletonProcess } from '../interfaces/skeleton-process.interface';
export class CreateProcess implements SkeletonProcess {
constructor() {}
initialization(): Observable<void> {
return of(undefined);
}
before(): Observable<void> {
return of(undefined);
}
begin(): Observable<void> {
return of(undefined);
}
process(): Observable<void> {
return of(undefined);
}
end(): Observable<void> {
return of(undefined);
}
after(): Observable<void> {
return of(undefined);
}
}

View File

@ -0,0 +1 @@
export class DeleteProcess {}

View File

@ -0,0 +1 @@
export class ListProcess {}

View File

@ -0,0 +1 @@
export class PaginationProcess {}

View File

@ -0,0 +1 @@
export class PartialBatchUpdateProcess {}

View File

@ -0,0 +1 @@
export class ReadProcess {}

View File

@ -0,0 +1 @@
export class UpdateProcess {}