| 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; |
no outgoing calls
no test coverage detected