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