public ActionResult Serial()
        {
            var model = new SerialFilters();

            try
            {
                var serials = _serialService.GetFilteredSerials(model);
                ViewBag.SerialsReport = serials.Result.Items;
            }
            catch
            {
                throw new RequestErrorException("Error obteniendo los seriales");
            }
            return(View(model));
        }