public ActionResult StockAdjustmentsInformation()
        {
            ViewBag.productServices = productServicesRepository.GetProductServices();
            var stockAdjustments = stockAdjustmentRepository.GetFullStockAdjustments(stockAdjustmentRepository.GetStockAdjustments(), productServicesRepository);

            return(View(stockAdjustments));
        }