public IActionResult RemoveBudget(int id)
        {
            _budgetRepo.RemoveBudget(id);

            return(Ok());
        }