import { OrderStatuses } from './entities/order-status.entity'; import { ORDER_STATUSES_REPOSITORY } from '../../core/constants'; export const orderStatusesProviders = [ { provide: ORDER_STATUSES_REPOSITORY, useValue: OrderStatuses, }, ];