Skip to content

Instantly share code, notes, and snippets.

@stpriyanka
Created March 2, 2017 10:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stpriyanka/4603c94f3897863678657f687887e638 to your computer and use it in GitHub Desktop.
Save stpriyanka/4603c94f3897863678657f687887e638 to your computer and use it in GitHub Desktop.
Get list of unattested billograms
public class Utility
{
............
public string billogramState ="unattested";
public async Task<List<BillogramStructure>> GetBillogramsByState()
{
List<BillogramStructure> billograms = _billogramUtility.GetBillogramsByState(billogramState).Result;
return billograms;
}
.............
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment