public async Task <IActionResult> DeleteByIdAsync(string id)
        {
            await _stationManager.DeleteByIdAsync(id);

            Emitter.EmitMessage(_operationHandler, new CollectionEventReceived
            {
                Type       = EventType.Delete,
                Collection = _collection,
                Id         = id,
                Model      = null
            });

            return(NoContent());
        }