This commit is contained in:
2025-11-23 09:46:24 +03:30
parent cc28b78596
commit f196366421
11 changed files with 456 additions and 11 deletions
@@ -0,0 +1,11 @@
import { EntityManager, EntityRepository } from '@mikro-orm/postgresql';
import { Injectable } from '@nestjs/common';
import { RestaurantShipmentMethod } from '../entities/restaurant-shipment-method.entity';
@Injectable()
export class RestaurantShipmentMethodRepository extends EntityRepository<RestaurantShipmentMethod> {
constructor(readonly em: EntityManager) {
super(em, RestaurantShipmentMethod);
}
}