public async Task <IActionResult> Index() //TO DO Pagination
        {
            var result = await transferService.GetTransactionsUserIdAsync(User.Id());

            return(View(result));
        }