Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save JoseGonzalez321/e17f7242cf0c19d6dffc to your computer and use it in GitHub Desktop.
Save JoseGonzalez321/e17f7242cf0c19d6dffc to your computer and use it in GitHub Desktop.
public DataTable GetSecondLevel(DateTime valueDate,
string branch,
string levelName,
string subLevelName)
{
const string storedProc = "GetLevelTwo";
var parameters = new Dictionary<string, object>
{
{ParamConstant.ValueDate, valueDate},
{ParamConstant.Branch, branch},
{ParamConstant.LevelName, levelName},
{ParamConstant.SubLevelName, subLevelName},
};
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