コード例 #1
0
 protected virtual bool IsJourneyLengthNotMoreTwoMonth()
 {
     if (Journey.StartedDate != null && Journey.ExpirstionDate != null)
     {
         if (Journey.DateDifference() > 2)
         {
             ValidationError.ErrorValidation += " Продолжительность поездки не может быть более двух месяцев! ";
             return(false);
         }
         return(true);
     }
     else
     {
         return(false);
     }
 }