コード例 #1
0
ファイル: VmData.cs プロジェクト: fishg92/VolunteerManager
 public static DateTime GetConfigValueDateTime(string itemKey)
 {
     SQLStoredProc sp = new SQLStoredProc(config.ConnectionString, "haah.GetConfigValueDateTime");
     sp.AddInputParameter("@ItemKey", itemKey);
     return sp.ScalarDateTime(DateTime.MinValue);
 }