Files
bigcapital/packages/server/src/modules/Branches/queries/GetBranch.service.ts
2025-04-07 11:51:24 +02:00

27 lines
685 B
TypeScript

import { Inject } from '@nestjs/common';
import { Injectable } from '@nestjs/common';
import { Branch } from '../models/Branch.model';
import { TenantModelProxy } from '@/modules/System/models/TenantBaseModel';
@Injectable()
export class GetBranchService {
constructor(
@Inject(Branch.name)
private readonly branch: TenantModelProxy<typeof Branch>,
) {}
/**
* Retrieves the given branch details.
* @param {number} branchId
* @returns {Promise<IBranch>}
*/
public getBranch = async (branchId: number): Promise<Branch> => {
const branch = await this.branch()
.query()
.findById(branchId)
.throwIfNotFound();
return branch;
};
}