public virtual void Patch(StoreTaxProviderEntity target)
        {
            if (target == null)
            {
                throw new ArgumentNullException(nameof(target));
            }

            target.IsActive    = IsActive;
            target.Code        = Code;
            target.Description = Description;
            target.LogoUrl     = LogoUrl;
            target.Name        = Name;
            target.Priority    = Priority;
        }
        public virtual void Patch(StoreTaxProviderEntity target)
        {
            if (target == null)
            {
                throw new ArgumentNullException("target");
            }

            target.IsActive    = this.IsActive;
            target.Code        = this.Code;
            target.Description = this.Description;
            target.LogoUrl     = this.LogoUrl;
            target.Name        = this.Name;
            target.Priority    = this.Priority;
        }