MCPcopy
hub / github.com/FoalTS/foal / CRUDService

Interface CRUDService

tests/e2e-tests/src/tests/controller-inheritance.spec.ts:34–39  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32 /* Abstract */
33
34 interface CRUDService {
35 create(body: any): any;
36 findById(id: any): any;
37 update(id: any, body: any): any;
38 deleteById(id: any): any;
39 }
40
41 abstract class BaseController {
42 abstract service: CRUDService;

Callers 17

entityTestSuiteFunction · 0.65
convertStateToDbSessionFunction · 0.65
storeTestSuiteFunction · 0.65
updateMethod · 0.65
controller.spec.tsFile · 0.65
createFunction · 0.65
findByIdFunction · 0.65
encryptStringFunction · 0.65
decryptStringFunction · 0.65

Implementers 1

SomeServicetests/e2e-tests/src/tests/controller-i

Calls

no outgoing calls

Tested by

no test coverage detected