Example #1
0
 public BaseLineChassisEventArgs(XElement element)
 {
     _Type            = BLCEventType.enVehicleXMLCreated;
     _val             = null;
     _strStatus       = "";
     _element         = element;
     Cancel           = false;
     _strVIN          = "";
     _strFailureCause = "";
 }
Example #2
0
 public BaseLineChassisEventArgs(BLCEventType Type, object val, string strStatus)
 {
     _Type            = Type;
     _val             = val;
     _strStatus       = strStatus;
     _element         = null;
     Cancel           = false;
     _strVIN          = "";
     _strFailureCause = "";
 }