| 12345678910111213141516171819202122232425262728 |
- using DeviceCenter;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace DeviceCenter
- {
- class AcsDevice : Device
- {
- public AcsDevice()
- {
- this.type = Device.Type.ACS;
- }
- public override void Init()
- {
- throw new NotImplementedException();
- }
- public override void dispose()
- {
- throw new NotImplementedException();
- }
- }
- }
|