@bizdoc/hi-bob
v0.0.6
Published
Install server-side NuGet [package](https://www.nuget.org/packages/BizDoc.Infrastructure.HiBob).
Downloads
7
Readme
HiBob for BizDoc
Install server-side NuGet package.
Add to your Angular:
npm i @bizdoc/hi-bob
In app.module.ts, import the HiBob module:
@NgModule({
imports: [HiBobModule.forRoot(), ...]
})
export class AppModule {
}
Service
Inject HiBobService
.
export class MyClass {
constructor(private _service: HiBobService) {}
void myMethod() {
this._service.readCustomTable<MyCustomTable>(...);
}
}
export interface MyCustomTable {
}
| Method | | -- | | readCustomTable() | | getCompanyList() |