private async Task<MonthlyBudget> GetMonthlyBudgetAsync(int year, int month)
 {
     return await _repo.GetMonthlyBudget(year, month) ?? null;
 }