public async Task <IHttpActionResult> Get(long id) { try { return(Ok((await _service.Get(id)))); } catch (Exception) { throw; } }