public ActionResult <string> DeleteTransactions(int id)
 {
     try
     {
         string userId       = HttpContext.User.FindFirst(ClaimTypes.NameIdentifier).Value;
         var    foundAccount = _acs.GetById(id, userId);
         if (foundAccount != null)
         {
             var accountNumber = foundAccount.AccountNumber;
             return(Ok(_ts.DeleteAllTransactions(accountNumber, userId)));
         }
         return("Account Not Found");
     }
     catch (Exception e)
     {
         return(BadRequest(e.Message));
     }
 }