public IEnumerable <Transaction> GetTransactionsByUserId(string userId)
 {
     return(_transactionRepo.GetByUserId(userId));
 }