コード例 #1
0
 public static Int32 DeleteIncidentState(Int32 incident_id)
 {
     return(BllIncidentState.DeleteIncidentState(incident_id));
 }
コード例 #2
0
 public static bool SetIncidentState1(Int32 incident_id, Int32 period_to_update)
 {
     return(BllIncidentState.SetIncidentState1(incident_id, period_to_update));
 }
コード例 #3
0
 public static void InsertIncidentState(Int32 incident_id, bool is_active, string state)
 {
     BllIncidentState.InsertIncidentState(incident_id, is_active, state);
 }
コード例 #4
0
 public static Int32 UpdateIncidentState(Int32 incident_id, bool is_active, string state)
 {
     return(BllIncidentState.UpdateIncidentState(incident_id, is_active, state));
 }
コード例 #5
0
        //-----------------------------------------------------------------------------

        public static IncidentDS.IncidentStateDSDataTable SelectIncidentState(Int32 incident_id)
        {
            return(BllIncidentState.SelectIncidentState(incident_id));
        }