예제 #1
0
        /// <summary>
        /// Deserializes the byte array and returns an instance of <see cref="__ItemSummaryView"/>.
        /// </summary>
        /// <returns>If the byte array can be deserialized and cast to an instance of <see cref="__ItemSummaryView"/>,
        /// returns an instance of <see cref="__ItemSummaryView"/>; otherwise returns null.</returns>
        public static new __ItemSummaryView FromArray(byte[] byteArray)
        {
            __ItemSummaryView o = null;

            try
            {
                o = (__ItemSummaryView)CustomObjectBase.FromArray(byteArray);
            }
            catch (Exception e)
            {
                throw e;
            }

            return(o);
        }
예제 #2
0
        /// <summary>
        /// Compares this instance with a specified object. Throws an ArgumentException if the specified object is not of type <see cref="__ItemSummaryView"/>.
        /// </summary>
        /// <param name="obj">An <see cref="__ItemSummaryView"/> object to compare with this instance.</param>
        /// <returns>0 if the specified object equals this instance; -1 if the specified object does not equal this instance.</returns>
        public virtual int CompareTo(Object obj)
        {
            if (obj is __ItemSummaryView)
            {
                __ItemSummaryView o = (__ItemSummaryView)obj;

                if (
                    o.IsNew == IsNew &&
                    o.IsDeleted == IsDeleted &&
                    GetComparisonString(o.MARCBibID) == GetComparisonString(MARCBibID) &&
                    o.TitleID == TitleID &&
                    GetComparisonString(o.FullTitle) == GetComparisonString(FullTitle) &&
                    o.RareBooks == RareBooks &&
                    o.ItemStatusID == ItemStatusID &&
                    o.ItemID == ItemID &&
                    GetComparisonString(o.BarCode) == GetComparisonString(BarCode) &&
                    o.PDFSize == PDFSize &&
                    GetComparisonString(o.ShortTitle) == GetComparisonString(ShortTitle) &&
                    GetComparisonString(o.Volume) == GetComparisonString(Volume) &&
                    o.ItemSequence == ItemSequence &&
                    GetComparisonString(o.WebVirtualDirectory) == GetComparisonString(WebVirtualDirectory) &&
                    GetComparisonString(o.OCRFolderShare) == GetComparisonString(OCRFolderShare) &&
                    GetComparisonString(o.SortTitle) == GetComparisonString(SortTitle) &&
                    o.ScanningDate == ScanningDate &&
                    o.PublishReady == PublishReady &&
                    o.CreationDate == CreationDate
                    )
                {
                    o = null;
                    return(0);                    // true
                }
                else
                {
                    o = null;
                    return(-1);                    // false
                }
            }
            else
            {
                throw new ArgumentException("Argument is not of type __ItemSummaryView");
            }
        }