| 12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using TalentICTGXControl;
- namespace Core.StlMes.Client.YdmBcPipeManage
- {
- public static class IcReadWrite
- {
- private static TalentICTGXControl.TalentICTGXClass icClass;
- public static TalentICTGXClass getIcClass()
- {
- if (icClass == null)
- {
- icClass = new TalentICTGXControl.TalentICTGXClass();
- }
-
- return icClass;
- }
- }
- }
|