private static string GetSopConsignmentNo(this dbo_sop_event_new sop)
 {
     return(sop.consignment_no);
 }
 private static DateTime?GetSopDateTime(this dbo_sop_event_new sop)
 {
     return(sop.date_field);
 }
        private static string HashSopEventNew(this dbo_sop_event_new sop)
        {
            var key = $"sop.{sop.GetType().Name}.{sop.consignment_no}.{sop.date_field.Value:s}";

            return(GetHashKey(key));
        }