예제 #1
0
        public void RemoveLicenseAuthority(ILicenseAuthority licenseAuthority)
        {
            if (licenseAuthority == null)
            {
                throw new ArgumentNullException(nameof(licenseAuthority));
            }

            _licenseAuthorities.Remove(licenseAuthority);
        }