1234567891011121314151617181920212223 |
- using Aitex.Sorter.RT.EFEMs.Servers;
- namespace Aitex.Sorter.RT.EFEMs.Tasks
- {
- class SetWorkchkTask : CheckImp, ITask
- {
- public SetWorkchkTask()
- {
- }
- public bool Execute(out string result, params string[] args)
- {
- result = "NOFUNC";
- return false;
- }
- public bool? Monitor(out string result, params string[] args)
- {
- result = string.Empty;
- return true;
- }
- }
- }
|