public IObservable <CIMFCPort> AntecedentAsync(MsvmFcEndpoint inDependent, CimOperationOptions options = null)
        {
            var scope     = _scope;
            var instances = _resolver.ResolveSourceAsync(scope, inDependent.AsCimInstance(), options);

            return(instances.Select(i => (CIMFCPort)scope.Mapper.Create(scope, i)));
        }
        public IEnumerable <MsvmFcEndpoint> Antecedent(MsvmFcEndpoint inDependent, CimOperationOptions options = null)
        {
            var scope     = _scope;
            var instances = _resolver.ResolveSource(scope, inDependent.AsCimInstance(), options);

            return(instances.Select(i => (MsvmFcEndpoint)scope.Mapper.Create(scope, i)));
        }