public ActionResult Dispatch()
        {
            var model = new DispatchFilters();

            try
            {
                var dispatches = _dispatchService.GetFilteredDispatches(model);
                ViewBag.DispatchesReport = dispatches.Result.Items;
                ViewBag.Status           = "";
            }
            catch
            {
                throw new RequestErrorException("Error obteniendo los envíos");
            }
            return(View(model));
        }