/// <summary>
 /// Creator: Brandyn T. Coverdill
 /// Created: 2020/04/07
 /// Approver: Dalton Reierson
 /// Approver:  Jesse Tomash
 ///
 /// Removes an Item Report.
 /// </summary>
 ///
 /// <remarks>
 /// Updated By:
 /// Updated:
 /// Update:
 /// </remarks>
 public bool deleteItemReport(int itemId, int itemQty, string report)
 {
     try
     {
         return(1 == _itemReportAccessor.removeItemReport(itemId, itemQty, report));
     }
     catch (Exception ex)
     {
         throw new ApplicationException("Unable to Delete Item Report.", ex);
     }
 }