Esempio n. 1
0
        protected virtual PrintedAt GetPrintedAtFromReader(IDataReader reader)
        {
            EntityConverter <PrintedAt> PrintedAtEntity = new EntityConverter <PrintedAt>();
            PrintedAt printedAt = PrintedAtEntity.Convert(reader);

            return(printedAt);
        }
        public override int GetHashCode()
        {
            unchecked
            {
                const int hashBase   = (int)2166136261;
                const int multiplier = 16777619;

                int hash = hashBase;
                hash = (hash * multiplier) ^ (PrintedAt is null ? 0 : PrintedAt.GetHashCode());
                hash = (hash * multiplier) ^ (PrintedBatch is null ? 0 : PrintedBatch.GetHashCode());
                return(hash);
            }
        }