BLL/HStation.BLL.Assets.Core/03-localclient/01-PumpProduct/PumpGroup.cs
@@ -267,16 +267,19 @@ /// </summary> /// <param name="ID"></param> /// <returns></returns> public bool DeleteEx(long ID) public async Task<bool> DeleteEx(long ID) { if (ID > 0) return await Task.Factory.StartNew(() => { var bol = _service.DeleteEx(ID); return bol; } return false; } if (ID > 0) { var bol = _service.DeleteEx(ID); return bol; } return false; }); #endregion Delete #endregion Delete } } }