I have a service call that returns to me an IEnumerable of CustomObject, this is a third party call that I don't have the liberty to modify. CustomObject can be assumed to have a definition like below:
public class CustomObject
{
public int Id { get; set; }
public string Name { get; set; }
...
...
...
public int Points { get; set; }
public bool IsPrivate { get; set; }
}
Among the list of objects returned, I could have special CustomObject objects. I need to implement some special rules such as:
- If elements with Ids 1 and 3 both exist in the list, only render one of them based on rules a. If either one of them has IsPrivate flagged to true, display the one that has IsPrivate set to false b. If neither have IsPrivate set to true, display the one with higher points ... and so on
What would be the best place to implement these rules. I thought about implementing an IEqualityComparer and do a .Distinct() on my service call, doesn't seem like what IEqualityComparer is meant to do.
Suggestions?