예제 #1
0
파일: limit.cs 프로젝트: NickJ1984/planner
 public bool Equals(ILim other)
 {
     if (direction == other.direction && date == other.date)
     {
         return(true);
     }
     return(false);
 }
예제 #2
0
파일: limit.cs 프로젝트: NickJ1984/planner
        public bool isAllowed(ILim limit)
        {
            // if (limit.limitType == e_dot_Limit.None) return false;

            return(isAllowed(limit.date));
        }