private static string GetWwpConsignmentNo(this dbo_wwp_event_new_log wwp)
 {
     return(wwp.consignment_note_number);
 }
 private static DateTime?GetWwpDateTime(this dbo_wwp_event_new_log wwp)
 {
     return(wwp.date_field);
 }
        private static string HashWwpEventNewLog(this dbo_wwp_event_new_log wwp)
        {
            var key = $"wwp.{wwp.GetType().Name}.{wwp.consignment_note_number}.{wwp.date_field.Value:s}";

            return(GetHashKey(key));
        }