/// <summary>
 /// Creator: Brandyn T. Coverdill
 /// Created: 2020/02/22
 /// Approver: Dalton Reierson
 /// Approver:  Jesse Tomash
 ///
 /// constructor for itemCategory manager that takes an itemCategoryAccessor.
 /// </summary>
 ///
 /// <remarks>
 /// Updated By:
 /// Updated:
 /// Update:
 /// </remarks>
 /// <param name="sender"></param>
 public ItemCategoryManager(IItemCategoryAccessor itemCategoryAccessor)
 {
     _itemCategoryAccessor = itemCategoryAccessor;
 }
 /// <summary>
 /// Creator: Brandyn T. Coverdill
 /// Created: 2020/02/22
 /// Approver: Dalton Reierson
 /// Approver:  Jesse Tomash
 ///
 /// The default constructor for the itemCategory manager.
 /// </summary>
 ///
 /// <remarks>
 /// Updated By:
 /// Updated:
 /// Update:
 /// </remarks>
 public ItemCategoryManager()
 {
     _itemCategoryAccessor = new ItemCategoryAccessor();
 }