Ejemplo n.º 1
0
 public T ApplyAndFreeze(JobMode other) => Apply(other).Freeze();
Ejemplo n.º 2
0
 public Job(string id, JobMode other) : this(id)
 {
     Apply(other);
 }
Ejemplo n.º 3
0
 public new T Apply(JobMode other) => (T)ApplyCore(other);
Ejemplo n.º 4
0
 public Job(JobMode other) : this((string)null, other)
 {
 }