Created
May 11, 2018 19:06
-
-
Save Devcon4/447fc7eefc9861fe94710dcf36127ca7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| getCitation = this.ds.citation.getAllForProcedure.bind(this, pipe(Dispatch(this.store, this.getCitation), Spinner(this.store))); | |
| getCitations(procId: number): Observable<CitationBasic> { | |
| return this.httpGet( | |
| this.getCitations, | |
| '/inspections/api/action/Citation/GetAllForProcedure?procId=' + procId, | |
| x => new CitationBasic(x) | |
| ); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment