shipment methods

This commit is contained in:
2025-11-23 15:38:22 +03:30
parent d894bae756
commit ff97d509aa
12 changed files with 28 additions and 25 deletions
@@ -1,10 +0,0 @@
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);
}
}