public GateLink(int v, GateLink from, Gate c) { Id = v; _from = from; this.c = c; }
public GateLink(int id, Gate gate1, Gate gate2) { Id = id; this.gate1 = gate1; this.gate2 = gate2; }