public async Task <IEnumerable <Expense> > GetExpenses(string userId)
        {
            try
            {
                var userExpenses = await expenseRepository.FilterExpensis(e => e.UserId.ToString().Equals(userId));

                return(userExpenses);
            }
            catch (Exception)
            {
                throw;
            }
        }