public async Task RemovePoint(Guid listId, Point point) { await _pointsService.RemovePoint(listId, Map(point)).ConfigureAwait(false); }
public async Task <IActionResult> RemovePoint([FromBody] Guid id) { await _pointsService.RemovePoint(id); return(Ok()); }