public ActionResult ClientStock()
        {
            ICollection <ViewClientStockReport> reports = _iDeliveryManager.GetAllClientsByClientTypeId(3);

            foreach (var report in reports)
            {
                report.DeliveredOrderModels = _iDeliveryManager.GetDeliveredOrderByClientId(report.ClientId);
            }
            return(View(reports));
        }