import { ICustomer } from '../models'; export interface ICustomerRepository { create(customer: ICustomer, tenantId: string | null): Promise; find(emailAddres: string, tenantId: string | null): Promise; update(customer: ICustomer, tenantId: string | null): Promise; }