Example #1
0
 public static Int32 DeleteIncidentNote(Int32 note_id)
 {
     return(BllIncidentNote.DeleteIncidentNote(note_id));
 }
Example #2
0
 public static IncidentDS.IncidentNoteDSDataTable GetAllIncidentNotes(Int32 incident_id)
 {
     return(BllIncidentNote.GetAllIncidentNotes(incident_id));
 }
Example #3
0
 public static void InsertIncidentNote(Int32 incident_id, Int32 user_id, string note)
 {
     BllIncidentNote.InsertIncidentNote(incident_id, user_id, note);
 }
Example #4
0
 public static IncidentDS.IncidentNoteDSDataTable SelectIncidentNote(Int32 note_id)
 {
     return(BllIncidentNote.SelectIncidentNote(note_id));
 }