Exemple #1
0
        // GET: Home
        public ActionResult Index()
        {
            var ingresos = ingresoManager.GetAllIngresos();
            var gastos   = gastoManager.GetAllGastos();

            var montoReal = ingresos.Sum(i => i.Monto) - gastos.Sum(g => g.Monto);

            ViewBag.Billetera = string.Format("{0:n0}", montoReal);

            return(View());
        }
        // GET: Ingresos
        public ActionResult Index()
        {
            var ingresos = manager.GetAllIngresos();
            var lista    = new List <SelectListItem>()
            {
                new SelectListItem()
                {
                    Text = "Elija una fuente", Value = "-1"
                }
            };

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

            return(View(new SearchViewModel <IngresoDto>()
            {
                Transacciones = ingresos,
                FuentesServiciosDisponibles = lista
            }));
        }