shipment methods

This commit is contained in:
2025-11-23 15:25:36 +03:30
parent a3f0593443
commit d894bae756
5 changed files with 87 additions and 11 deletions
@@ -0,0 +1,10 @@
import { EntityManager, EntityRepository } from '@mikro-orm/postgresql';
import { Injectable } from '@nestjs/common';
import { ShipmentMethod } from '../entities/shipment-method.entity';
@Injectable()
export class ShipmentMethodRepository extends EntityRepository<ShipmentMethod> {
constructor(readonly em: EntityManager) {
super(em, ShipmentMethod);
}
}