Ejemplo n.º 1
0
 private static string GetSipConsignmentNo(this dbo_sip_event_new sip)
 {
     return(sip.consignment_no);
 }
Ejemplo n.º 2
0
 private static DateTime?GetSipDateTime(this dbo_sip_event_new sip)
 {
     return(sip.date_field);
 }
Ejemplo n.º 3
0
        private static string HashSipEventNew(this dbo_sip_event_new sip)
        {
            var key = $"sip.{sip.GetType().Name}.{sip.consignment_no}.{sip.date_field.Value:s}";

            return(GetHashKey(key));
        }