| | |
| | | return Service.InitializationLocation(initializationLocationDTO); |
| | | } |
| | | |
| | | [HttpPost, Route("LocationEnableStatus")] |
| | | public WebResponseContent LocationEnableStatus([FromBody] int[] keys) |
| | | { |
| | | return Service.LocationEnableStatus(keys); |
| | | } |
| | | |
| | | [HttpPost, Route("LocationDisableStatus")] |
| | | public WebResponseContent LocationDisableStatus([FromBody] int[] keys) |
| | | { |
| | | return Service.LocationDisableStatus(keys); |
| | | } |
| | | |
| | | [HttpPost, Route("GetLocationCodes")] |
| | | public WebResponseContent GetLocationCodes() |
| | | { |
| | | return Service.GetLocationCodes(); |
| | | } |
| | | |
| | | [HttpGet, Route("GetLocationLayer")] |
| | | public object GetLocationLayer() |
| | | { |
| | | return Service.GetLocationLayer(); |
| | | } |
| | | |
| | | [HttpPost, Route("UpdateEnableStatus")] |
| | | public WebResponseContent UpdateEnableStatus([FromBody] SaveModel saveModel) |
| | | { |
| | | return Service.UpdateEnableStatus(saveModel); |
| | | } |
| | | |
| | | [HttpPost, Route("AdjacentDepthLocation"), AllowAnonymous] |
| | | public Dt_LocationInfo AdjacentDepthLocation(string locationCode) |
| | | { |