public override bool Equals(object obj)
 {
     if (obj.GetType() == typeof(HEAD_SHOP_ACCOUNT))
     {
         HEAD_SHOP_ACCOUNT compare = (HEAD_SHOP_ACCOUNT)obj;
         return(compare.KeyValue() == this.KeyValue());
     }
     else
     {
         return(base.Equals(obj));
     }
 }