Exemplo n.º 1
0
 public static decimal GetConfigValueDecimal(string itemKey)
 {
     SQLStoredProc sp = new SQLStoredProc(config.ConnectionString, "haah.GetConfigValueDecimal");
     sp.AddInputParameter("@ItemKey", itemKey);
     return sp.ScalarDecimal(0);
 }