public static async Task DeletePersonFaceAsync(string strPersonGroupId, Guid uidPersonId, Guid uidPersistedFaceId)
        {
            try
            {
                await fsClient.DeletePersonFaceAsync(strPersonGroupId, uidPersonId, uidPersistedFaceId);
            }
            catch (Exception e)
            {
                return;

                throw;
            }
        }