public override bool Equals(object obj)
        {
            DoesBind other = obj as DoesBind;

            if (other == null)
            {
                return(false);
            }
            else
            {
                return(true);
            }
        }
        public static DoesBind GetInstance()
        {
            DoesBind doesBind = new DoesBind();

            return(doesBind);
        }