This commit is contained in:
RDeck 2025-10-08 02:19:16 -04:00
parent 00b0211767
commit e6d962259f
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ internal class ClsDobbsEmail_T1439 : IDisposable
using (var cm = new SqlCommand("crpt.[Dobbs_T1439_EmailContests]", cn) { CommandType = CommandType.StoredProcedure, CommandTimeout = 120 })
using (var da = new SqlDataAdapter(cm))
{
cm.Parameters.Add("@DateThruOverride", SqlDbType.Date).Value = DateTime.Parse("Oct 7, 2025");
//cm.Parameters.Add("@DateThruOverride", SqlDbType.Date).Value = DateTime.Parse("Oct 7, 2025"); // override the date thru date for testing
ds = new DataSet();
da.Fill(ds);
}