public async Task DeclineDocumentAsync(string clientId, string documentId, string changer, string comment)
        {
            var docBefore = await _kycDocumentsRepository.GetAsync(clientId, documentId);

            var doc = await
                      _kycDocumentsRepository.SetStateAndComment(clientId, documentId, comment,
                                                                 DocumentStates.Declined);

            await UpdateKycProfileSettings(clientId);

            await _auditLogRepository.AddAuditRecordAsync(clientId, docBefore, doc, AuditRecordType.KycDocument, changer);
        }