| | |
| | | /// <returns></returns> |
| | | /// |
| | | [HttpPost,Route("ManualOperation"),AllowAnonymous] |
| | | public WebResponseContent ManualOperation(string position, string ExtendedState, string account) |
| | | public WebResponseContent ManualOperation(string position, string ExtendedState) |
| | | { |
| | | return Service.ManualOperation(position, ExtendedState, account); |
| | | return Service.ManualOperation(position, ExtendedState); |
| | | } |
| | | |
| | | /// <summary> |
| | |
| | | /// <returns></returns> |
| | | |
| | | [HttpPost,Route("automation"),AllowAnonymous] |
| | | public WebResponseContent automation(string ExtendedState, string account) |
| | | public WebResponseContent automation(string ExtendedState) |
| | | { |
| | | return Service.automation(ExtendedState, account); |
| | | return Service.automation(ExtendedState); |
| | | } |
| | | } |
| | | } |