import { ProductWithInventoryModel } from '../entities/product-with-inventory.entity';
export interface IProductWithInventoryRepository {
    create(data: ProductWithInventoryModel | any, options?: any): Promise<ProductWithInventoryModel>;
}
