Exemple #1
0
        public override bool Equals(CaseSelection <TCase> other)
        {
            if (other is UnselectedCase <TCase> )
            {
                return(true);
            }

            return(false);
        }
Exemple #2
0
        public override bool Equals(CaseSelection <TCase> other)
        {
            if (other is SelectedCase <TCase> o)
            {
                return([email protected](o.@case));
            }

            return(false);
        }
Exemple #3
0
 public abstract bool Equals(CaseSelection <TCase> other);