private static string GetHipConsignmentNo(this dbo_hip_event_new hip)
 {
     return(hip.consignment_no);
 }
 private static DateTime?GetHipDateTime(this dbo_hip_event_new hip)
 {
     return(hip.date_field);
 }
        private static string HashHipEventNew(this dbo_hip_event_new hip)
        {
            var key = $"hip.{hip.GetType().Name}.{hip.consignment_no}.{hip.date_field.Value:s}";

            return(GetHashKey(key));
        }