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