export interface AppDbClient { create(input: I): Promise; update(input: I): Promise; find(input: I): Promise; }