コード例 #1
0
ファイル: FlowStateSystem.cs プロジェクト: zesus19/c4.v2.T
		public void UpdateTeaState(Int16 stateID,string stateName)
		{
			using(FlowStatesDataAccess flowStatesDA = new FlowStatesDataAccess())
			{
				flowStatesDA.UpdateTeaState(stateID,stateName);
			}
		}
コード例 #2
0
ファイル: FlowStateSystem.cs プロジェクト: zesus19/c4.v2.T
		public void ClearFlowState(int type)
		{
			using(FlowStatesDataAccess flowStatesDA = new FlowStatesDataAccess())
			{
				flowStatesDA.ClearFlowState(type);
			}
		}
コード例 #3
0
ファイル: FlowStateSystem.cs プロジェクト: zesus19/c4.v2.T
		public DataSet GetTeaState()
		{
			using(FlowStatesDataAccess flowStatesDA = new FlowStatesDataAccess())
			{
				return flowStatesDA.GetTeaState();
			}
		}