示例#1
0
        public Arrow(int fromPinId, int toPinId, double voltage, double amps)
        {
            ArrowId   = UniqueIdGenerator.GenerateArrowId();
            FromPinId = fromPinId;
            ToPinId   = toPinId;

            Voltage = voltage;
            Amps    = amps;
        }