Example #1
0
 public static void InsertLog(int incidentId,
                              string consName,
                              string deviceMake,
                              string deviceModel,
                              int deviceValue,
                              string deviceType,
                              string kioskID,
                              string kioskName,
                              string kioskLocation,
                              byte[] idCard,
                              byte[] inspectorBin,
                              byte[] driverLicense,
                              string transactValue,
                              bool transactCompletion,
                              string screenUserHelp,
                              string server)
 {
     BllLog.InsertLog(incidentId,
                      consName,
                      deviceMake,
                      deviceModel,
                      deviceValue,
                      deviceType,
                      kioskID,
                      kioskName,
                      kioskLocation,
                      idCard,
                      inspectorBin,
                      driverLicense,
                      transactValue,
                      transactCompletion,
                      screenUserHelp,
                      server);
 }
Example #2
0
 public static void UpdateLog(int incident_id, string subject_notes)
 {
     BllLog.UpdateLog(incident_id, subject_notes);
 }
Example #3
0
 public static object GetImage(int incident_id, string fields)
 {
     return(BllLog.GetImage(incident_id, fields));
 }
Example #4
0
 public static void UpdateAudio(int incident_id, int audio_source, ref bool audio_complete)
 {
     BllLog.UpdateAudio(incident_id, audio_source, ref audio_complete);
 }
Example #5
0
 public static LogDS.LogDSDataTable SelectLog(Int32 incident_id)
 {
     return(BllLog.SelectLog(incident_id));
 }