// Add Book Borrowed by the user in BookBorrowerAccount


        // Get the list of Books, with the Borrower Book Account Details

        // Get the list of Borrowers
        public IEnumerable <Borrower> GetAllBorrowers()
        {
            var borrowers = _redisCacheProvider.GetAll <Borrower>();

            return(borrowers);
        }