示例#1
0
 public void UpdateTeaState(Int16 stateID, string stateName)
 {
     using (FlowStatesDataAccess flowStatesDA = new FlowStatesDataAccess())
     {
         flowStatesDA.UpdateTeaState(stateID, stateName);
     }
 }
示例#2
0
 public void ClearFlowState(int type)
 {
     using (FlowStatesDataAccess flowStatesDA = new FlowStatesDataAccess())
     {
         flowStatesDA.ClearFlowState(type);
     }
 }
示例#3
0
 public DataSet GetTeaState()
 {
     using (FlowStatesDataAccess flowStatesDA = new FlowStatesDataAccess())
     {
         return(flowStatesDA.GetTeaState());
     }
 }