// GET: Gastos
        public ActionResult Index()
        {
            var gastos        = manager.GetAllGastos();
            var proximosPagos = servicioManager.GetServiciosWithinNextFiveDays();

            var lista = new List <SelectListItem>()
            {
                new SelectListItem()
                {
                    Text = "Elija un servicio", Value = "-1"
                }
            };

            lista.AddRange(serviciosDisponibles.Select(f => new SelectListItem()
            {
                Text  = f.Nombre,
                Value = f.Id.ToString()
            }).ToList());

            var newGastos = new SearchViewModel <GastoDto>()
            {
                Transacciones = gastos,
                FuentesServiciosDisponibles = lista,
                ProximosPagos = proximosPagos
            };

            return(View(newGastos));
        }
        // GET: Notification
        public ActionResult GetNotifications()
        {
            var proximosPagos = servicioManager.GetServiciosWithinNextFiveDays();
            var json          = new JsonResult();

            json.JsonRequestBehavior = JsonRequestBehavior.AllowGet;
            json.Data = proximosPagos;

            return(json);
        }