123456789101112131415161718192021 |
- using Blue;
- namespace GHZLangChao
- {
- public class DeviceDetailsUpdataDataCommand : ICommand
- {
- private DeviceParameters DeviceParameter;
- public DeviceDetailsUpdataDataCommand(DeviceParameters DeviceParameter)
- {
- this.DeviceParameter = DeviceParameter;
- }
- public void OnExcute()
- {
- this.SendEvent(new DeviceDetailsUpdataDataEvent()
- {
- DeviceParameter = this.DeviceParameter
- });
- }
- }
- }
|