コード例 #1
0
ファイル: PeriodOrderTmp.cs プロジェクト: OTL90104/OrderBOT
        internal bool CheckBothTimeHasFilledIn(PeriodOrderTmp periodOrderTmp)
        {
            periodOrderTmp.SelectAllByUserID();
            TimeSpan SQLInitialTime = new TimeSpan();

            if (periodOrderTmp.StartTime == SQLInitialTime || periodOrderTmp.EndTime == SQLInitialTime)
            {
                return(false);
            }
            else
            {
                return(true);
            }
        }
コード例 #2
0
ファイル: PeriodOrderTmp.cs プロジェクト: OTL90104/OrderBOT
        internal bool CheckBothDateHasFilledIn(PeriodOrderTmp periodOrderTmp)
        {
            periodOrderTmp.SelectAllByUserID();
            DateTime SQLInitialTime = Convert.ToDateTime(System.Data.SqlTypes.SqlDateTime.MinValue.Value);

            if (periodOrderTmp.StartDate == SQLInitialTime || periodOrderTmp.EndDate == SQLInitialTime)
            {
                return(false);
            }
            else
            {
                return(true);
            }
        }
コード例 #3
0
ファイル: DateTimeChecker.cs プロジェクト: OTL90104/OrderBOT
        public static bool DateTimeCompareIsLaterThanEndTime(DateTime StartDate, PeriodOrderTmp periodOrderTmp)
        {
            periodOrderTmp.SelectAllByUserID();
            if (periodOrderTmp.EndDate == Convert.ToDateTime(System.Data.SqlTypes.SqlDateTime.MinValue.Value))
            {
                return(false);
            }
            int result = DateTime.Compare(StartDate, periodOrderTmp.EndDate);

            if (result < 0)
            {
                return(false);
            }
            else
            {
                return(true);
            }
        }
コード例 #4
0
ファイル: DateTimeChecker.cs プロジェクト: OTL90104/OrderBOT
        internal static bool TimeCompareIsEarlierThanStartTime(TimeSpan EndTime, PeriodOrderTmp periodOrderTmp)
        {
            periodOrderTmp.SelectAllByUserID();
            if (periodOrderTmp.StartTime == new TimeSpan())
            {
                return(false);
            }
            int result = TimeSpan.Compare(EndTime, periodOrderTmp.StartTime);

//            int result = DateTime.Compare(periodOrderTmp.StartTime, EndTime);
            if (result > 0)
            {
                return(false);
            }
            else
            {
                return(true);
            }
        }