Skip to content

Instantly share code, notes, and snippets.

@Devcon4
Created May 11, 2018 19:06
Show Gist options
  • Select an option

  • Save Devcon4/447fc7eefc9861fe94710dcf36127ca7 to your computer and use it in GitHub Desktop.

Select an option

Save Devcon4/447fc7eefc9861fe94710dcf36127ca7 to your computer and use it in GitHub Desktop.
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