private static string GetCommentConsignmentNo(this dbo_comment_event_new comm)
 {
     return(comm.consignment_no);
 }
 private static DateTime?GetCommentDateTime(this dbo_comment_event_new comm)
 {
     return(comm.date_field);
 }
        private static string HashCommentEventNew(this dbo_comment_event_new comm)
        {
            var key = $"comm.{comm.GetType().Name}.{comm.consignment_no}.{comm.date_field.Value:s}";

            return(GetHashKey(key));
        }