Example #1
0
File: TSpu.cs Project: hkiaipc/C3
 protected override IStationSource[] OnGetStationSources()
 {
     TStationSource s = new TStationSource();
     s.Guid = GuidHelper.Create(11);
     TStationSource s2 = new TStationSource();
     s2.Guid = GuidHelper.Create(12);
     TStationSource[] ss = new TStationSource[] {
         s,s2
     };
     return ss;
 }
Example #2
0
File: TSpu.cs Project: wpmyj/c3
        protected override IStationSource[] OnGetStationSources()
        {
            TStationSource s = new TStationSource();

            s.Guid = GuidHelper.Create(11);
            TStationSource s2 = new TStationSource();

            s2.Guid = GuidHelper.Create(12);
            TStationSource[] ss = new TStationSource[] {
                s, s2
            };
            return(ss);
        }