| | |
| | | } |
| | | |
| | | [HttpPost, Route("CallMateriel"), AllowAnonymous] |
| | | public WebResponseContent CallMateriel([FromBody] SaveModel saveModel) |
| | | public WebResponseContent CallMateriel([FromBody] string endPoint) |
| | | { |
| | | return _taskService.CallMateriel(saveModel); |
| | | return _taskService.CallMateriel(endPoint); |
| | | } |
| | | |
| | | [HttpPost, Route("MaterielCarry"), AllowAnonymous] |
| | | public WebResponseContent MaterielCarry([FromBody] SaveModel saveModel) |
| | | public WebResponseContent MaterielCarry([FromBody] string startPoint) |
| | | { |
| | | return _taskService.MaterielCarry(saveModel); |
| | | return _taskService.MaterielCarry(startPoint); |
| | | } |
| | | |
| | | [HttpPost, Route("MaterielGroup")] |