@tomei/finance
Version:
NestJS package for finance module
13 lines • 564 B
TypeScript
import { IRepositoryBase, LoginUserBase, ObjectBase } from '@tomei/general';
export declare abstract class AccountSystemEntity extends ObjectBase {
CompanyId: string;
PostedToAccSystemYN: string;
AccSystemRefId: string;
PostedById: string;
PostedDateTime: Date;
protected abstract _ObjectType: string;
protected abstract RepositoryBase: IRepositoryBase<any>;
private static PostHistoryRepository;
postToAccSystem(dbTransaction: any, loginUser: LoginUserBase): Promise<void>;
}
//# sourceMappingURL=account-system-entity.d.ts.map