public async Task <List <TransactionModel> > GetTransactionsForUser(string userId)
 {
     try
     {
         return(await _transactionRepository.GetByUser(userId));
     } catch (Exception e)
     {
         throw new Exception();
     }
 }