コード例 #1
0
 /// <summary>
 /// Creator: Brandyn T. Coverdill
 /// Created: 2020/04/07
 /// Approver: Dalton Reierson
 /// Approver:  Jesse Tomash
 ///
 /// Creates a new Item Report.
 /// </summary>
 ///
 /// <remarks>
 /// Updated By:
 /// Updated:
 /// Update:
 /// </remarks>
 public bool createNewItemReport(ItemReport itemReport)
 {
     try
     {
         return(_itemReportAccessor.addNewItemReport(itemReport));
     }
     catch (Exception ex)
     {
         throw new ApplicationException("Unable to add a new Item Report.", ex);
     }
 }