Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save JoseGonzalez321/4de08e90236d0c75da16 to your computer and use it in GitHub Desktop.
Save JoseGonzalez321/4de08e90236d0c75da16 to your computer and use it in GitHub Desktop.
public DataTable GetTopLevel(DateTime valueDate, string branch)
{
const string storedProc = "GetTopLevel";
var parameters = new Dictionary<string, object>
{
{ParamConstant.ValueDate, valueDate},
{ParamConstant.Branch, branch}
};
var result = storedProc.ToDataTable(dbConnection, parameters);
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment