public IActionResult Index()
        {
            var gastos = _repository.GetAll();

            return(View(gastos));
        }