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