private void InvokeVerified(SysCheckType type, bool verified)
        {
            AccountEventHandler handler = Verified;

            if (handler != null)
            {
                handler(type, verified);
            }
        }
 private void InvokeVerified(SysCheckType checkType, bool verified)
 {
     Verified?.Invoke(_type, checkType, verified);
 }