Order adapter

interface OrderAdapter {
    calculateOrderStatisticsForProducts: HandlerAndValidators<Record<string, Predicate>>;
    createOrder: HandlerAndValidators<Record<string, Predicate>>;
    deleteOrder: HandlerAndValidators<Record<string, Predicate>>;
    getOrder: HandlerAndValidators<Record<string, Predicate>>;
    listOrders: HandlerAndValidators<Record<string, Predicate>>;
    listOrdersForOrganization: HandlerAndValidators<Record<string, Predicate>>;
    listOrdersForUser: HandlerAndValidators<Record<string, Predicate>>;
    updateOrder: HandlerAndValidators<Record<string, Predicate>>;
}

Hierarchy

  • Adapter
    • OrderAdapter

Implemented by

Properties

calculateOrderStatisticsForProducts: HandlerAndValidators<Record<string, Predicate>>
createOrder: HandlerAndValidators<Record<string, Predicate>>
deleteOrder: HandlerAndValidators<Record<string, Predicate>>
getOrder: HandlerAndValidators<Record<string, Predicate>>
listOrders: HandlerAndValidators<Record<string, Predicate>>
listOrdersForOrganization: HandlerAndValidators<Record<string, Predicate>>
listOrdersForUser: HandlerAndValidators<Record<string, Predicate>>
updateOrder: HandlerAndValidators<Record<string, Predicate>>

Generated using TypeDoc