public async Task <IActionResult> Get([FromQuery] string term)
 {
     return(Ok(await _stations.SearchAsync(term)));
 }