public async Task <Command> Get(Guid id)
        {
            var dataModel = await _db.Commands.FindAsync(id);

            return(dataModel == null ? null : _converter.ToCommandDomainModel(dataModel));
        }