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