protected override bool IsIdentic(BaseActionModel other)
 {
     return(other is WaitForRebootActionModel model &&
            Timeout.Equals(model.Timeout));
 }
Esempio n. 2
0
 protected override bool IsIdentic(BaseActionModel other)
 {
     return(other is RebootActionModel);
 }
Esempio n. 3
0
 protected override bool IsIdentic(BaseActionModel other)
 {
     return(other is BarrierActionModel model &&
            Barrier.IsIdentical(model.Barrier));
 }
Esempio n. 4
0
 protected override bool IsIdentic(BaseActionModel other)
 {
     return(other is MethodActionModel model &&
            string.Equals(FullName, model.FullName));
 }