import { CustomerParticipantAddress } from "@/contexts/invoicing/domain"; import { IInvoicingContext } from "@/contexts/invoicing/intrastructure/InvoicingContext"; import { ICreateCustomer_AddressParticipant_Response_DTO } from "@shared/contexts"; export const CustomerParticipantAddressPresenter = async ( address: CustomerParticipantAddress, context: IInvoicingContext, ): Promise => { return { id: address.id.toString(), street: address.street.toString(), city: address.city.toString(), postal_code: address.postalCode.toString(), province: address.province.toString(), country: address.country.toString(), email: address.email.toString(), phone: address.phone.toString(), }; };