public IActionResult GetAttachmentByLoanId(Guid resourceId)
        {
            var attachments = _redisCacheService.GetAttachmentForLoan(resourceId);

            return(Ok(new GetDocumentRedisCacheResponse {
                Attachments = attachments
            }));
        }