/// <summary author="Kevin Broskow" created="2019/01/23"> /// Method used to delete a item from the database /// </summary> /// <updates> /// <update author="Jared Greenfield" date="2019/04/03"> /// Converted to Item from Product /// </update> /// </updates> /// <param name="selecteditem">The item to be deleted from the database</param> /// <returns>void</returns> public void DeleteItem(Item selecteditem) { try { _itemAccessor.DeleteItem(selecteditem); } catch (Exception ex) { ExceptionLogManager.getInstance().LogException(ex); throw ex; } }