public GastosController()
 {
     manager              = new GastoManager();
     servicioManager      = new ServicioManager();
     serviciosDisponibles = servicioManager.GetAllServicios();
 }
        // GET: Servicio
        public ActionResult Index()
        {
            var servicios = servicioManager.GetAllServicios().Where(s => !s.Nombre.ToLower().Equals("otro"));

            return(View(servicios));
        }