This commit is contained in:
mahyargdz
2025-09-14 15:15:03 +03:30
commit be82059172
534 changed files with 51310 additions and 0 deletions
@@ -0,0 +1,13 @@
import { BaseRepository } from "../../../common/base/repository";
import { ISellerDocument } from "../models/Abstraction/ISeller-document";
import { SellerDocumentModel } from "../models/sellerDocument.model";
export class SellerDocumentRepo extends BaseRepository<ISellerDocument> {
constructor() {
super(SellerDocumentModel);
}
}
export function createSellerDocumentRepo(): SellerDocumentRepo {
return new SellerDocumentRepo();
}