예제 #1
0
        public PCComponent WithPlugSlot(ComponentInterface plugInterface)
        {
            Argument.NotNull(plugInterface);

            PlugInterfaces.Add(plugInterface);
            return(this);
        }
예제 #2
0
        public PCComponent WithContainedSlot(ComponentInterface containedSlot)
        {
            Argument.NotNull(containedSlot);

            ContainedInterfaces.Add(containedSlot);
            return(this);
        }