DateTime now = DateTime.Today;
int year1 = Convert.ToInt32(project.Variables["year"].Value);
int month1 = Convert.ToInt32(project.Variables["month"].Value);
int day1 = Convert.ToInt32(project.Variables["day"].Value);
DateTime check = new DateTime(year1, month1, day1);
TimeSpan interval = check - now;
return interval;