public bool Equals(CellServiceModel obj)
        {
            if ((object)obj == null)
            {
                return(false);
            }

            return(this == obj);
        }
        public override bool Equals(object obj)
        {
            if (obj == null)
            {
                return(false);
            }

            CellServiceModel p = obj as CellServiceModel;

            if ((object)p == null)
            {
                return(false);
            }

            return(this.Equals(p));
        }