예제 #1
0
 internal static bool EqualsStoreId(StoreId idX, StoreId idY)
 {
     if (idX == null)
     {
         return(idY == null);
     }
     return(idY != null && RuleUtil.GetObjectId(idX).Equals(RuleUtil.GetObjectId(idY)));
 }