Exemplo n.º 1
0
 public DummyLinksWithNullValueHandling(SelfLink self, [NotNull] ThisLink @this, ThatLink that, IReadOnlyList <HalLink> those) : base(self)
 {
     This  = @this;
     That  = that;
     Those = those;
 }
Exemplo n.º 2
0
 public DummyLinks(SelfLink self, ThisLink @this, ThatLink that, IReadOnlyList <HalLink> those) : base(self)
 {
     This  = @this;
     That  = that;
     Those = those;
 }
 private DummyLinksWithPrivateConstructor(SelfLink self, ThisLink @this, ThatLink that, IReadOnlyList <HalLink> those) : base(self)
 {
     This  = @this;
     That  = that;
     Those = those;
 }