private static string GetNormConsignmentNo(this dbo_normal_console_event_new norm)
 {
     return(norm.consignment_no);
 }
 private static DateTime?GetNormDateTime(this dbo_normal_console_event_new norm)
 {
     return(norm.date_field);
 }
        private static string HashNormEventNew(this dbo_normal_console_event_new norm)
        {
            var key = $"norm.{norm.GetType().Name}.{norm.consignment_no}.{norm.date_field.Value:s}";

            return(GetHashKey(key));
        }