private static string GetSipConsignmentNo(this dbo_sip_event_new sip)
 {
     return(sip.consignment_no);
 }
 private static DateTime?GetSipDateTime(this dbo_sip_event_new sip)
 {
     return(sip.date_field);
 }
        private static string HashSipEventNew(this dbo_sip_event_new sip)
        {
            var key = $"sip.{sip.GetType().Name}.{sip.consignment_no}.{sip.date_field.Value:s}";

            return(GetHashKey(key));
        }