Esempio n. 1
0
 public Device_Alert Device_Alert_GetLastAlarm()
 {
     return(SQL_da_DeviceAlert.GetLastAlert());
 }
Esempio n. 2
0
 public bool Device_Alert_UpdateOneFlagByAlarmId(string alarmId, string flag)
 {
     return(SQL_da_DeviceAlert.UpdateOneFlagByAlarmId(alarmId, flag));
 }
Esempio n. 3
0
 public List <Device_Alert> Device_Alert_GetUnReadAlarms()
 {
     return(SQL_da_DeviceAlert.GetUnReadAlarms());
 }
Esempio n. 4
0
 public bool Device_Alert_DeleteOne(string id)
 {
     return(SQL_da_DeviceAlert.DeleteOne(id));
 }
Esempio n. 5
0
 public bool Device_Alert_UpdateOne(Device_Alert t_new)
 {
     return(SQL_da_DeviceAlert.UpdateOne(t_new));
 }
Esempio n. 6
0
 public bool Device_Alert_InsertOne(Device_Alert t_new)
 {
     return(SQL_da_DeviceAlert.InsertNew(t_new));
 }
Esempio n. 7
0
 public Device_Alert Device_Alert_GetAllByAlertId(string alertId)
 {
     return(SQL_da_DeviceAlert.GetAllByAlertID(alertId));
 }
Esempio n. 8
0
 public List <Device_Alert> Device_Alert_GetAllByDate(DateTime start, DateTime end, string deviceId)
 {
     return(SQL_da_DeviceAlert.GetAllByDate(start, end, deviceId));
 }