Exemplo n.º 1
0
 private static string GetHopConsignmentNo(this dbo_hop_event_new hop)
 {
     return(hop.consignment_no);
 }
Exemplo n.º 2
0
 private static DateTime?GetHopDateTime(this dbo_hop_event_new hop)
 {
     return(hop.date_field);
 }
Exemplo n.º 3
0
        private static string HashHopEventNew(this dbo_hop_event_new hop)
        {
            var key = $"hop.{hop.GetType().Name}.{hop.consignment_no}.{hop.date_field.Value:s}";

            return(GetHashKey(key));
        }