public ActionResult ListStoreOrders()
        {
            int StoreID = (int)HttpContext.Session.GetInt32("StoreID");

            List <OrderViewModel> orderViewModels = _buisnessLogicClass.GetAllTheOrdersByCurrentLocation(StoreID);

            return(View(orderViewModels));
        }