public async Task <ActionResult> AddToStart(int id, [FromBody] string substring) { return(await _telemetryCollector.WithStopwatch <ActionResult>(async() => { if (await _service.AddToStart(id, substring)) { return Ok(); } return BadRequest(); })); }