Ejemplo n.º 1
0
 public static Int32 DeleteIncidentNote(Int32 noteId)
 {
     return(DalIncidentNote.DeleteIncidentNote(noteId));
 }
Ejemplo n.º 2
0
 public static IncidentDS.IncidentNoteDSDataTable GetAllIncidentNotes(Int32 incidentId)
 {
     IncidentDS.IncidentNoteDSDataTable dt = DalIncidentNote.GetAllIncidentNotes(incidentId);
     return(processData(dt));
 }
Ejemplo n.º 3
0
 public static void InsertIncidentNote(Int32 incidentId, Int32 userId, string note)
 {
     DalIncidentNote.InsertIncidentNote(incidentId, userId, note);
 }
Ejemplo n.º 4
0
        //-----------------------------------------------------------------------------



        public static IncidentDS.IncidentNoteDSDataTable SelectIncidentNote(Int32 noteId)
        {
            IncidentDS.IncidentNoteDSDataTable dt = DalIncidentNote.SelectIncidentNote(noteId);
            return(processData(dt));
        }