public async Task <IActionResult> CreateAsync(Station station)
        {
            await _stationManager.CreateAsync(station);

            Emitter.EmitMessage(_operationHandler, new CollectionEventReceived
            {
                Type       = EventType.Create,
                Collection = _collection,
                Id         = station.Id,
                Model      = station
            });

            return(Created("", new { Status = true, Data = station }));
        }