示例#1
0
 /// <summary>
 ///
 /// </summary>
 /// <returns></returns>
 public bool IsPlanting()
 {
     if (CurrentCrop != null)
     {
         return(CurrentCrop.GetIsPlanting());
     }
     return(false);
 }
示例#2
0
 internal bool IsPlanting()
 {
     try
     {
         if (CurrentCrop != null)
         {
             return(CurrentCrop.GetIsPlanting());
         }
     }
     catch (Exception ex)
     {
         throw ErrorLogger.CreateException(ex);
     }
     return(false);
 }