| | |
| | | return locations; |
| | | } |
| | | [HttpPost, Route("LocationEnableStatus")] |
| | | public WebResponseContent LocationEnableStatus(int[] keys) |
| | | public WebResponseContent LocationEnableStatus([FromBody] int[] keys) |
| | | { |
| | | return Service.LocationEnableStatus(keys); ; |
| | | } |
| | | [HttpPost, Route("LocationDisableStatus")] |
| | | public WebResponseContent LocationDisableStatus(int[] keys) |
| | | public WebResponseContent LocationDisableStatus([FromBody] int[] keys) |
| | | { |
| | | return Service.LocationDisableStatus(keys); ; |
| | | } |
| | | |
| | | |
| | | [HttpPost, Route("GetLocation")] |
| | | public Dt_LocationInfo? GetLocation(string roadway, int Locationtype) |
| | | { |
| | | return Service.GetLocation(roadway, Locationtype); ; |
| | | } |
| | | } |
| | | } |