Before SalesLogix 7.5.3 you could call the GetTeamByUser method of the Sage.SalesLogix.Secuirty.Owner class. This would return an IList of Sage.SalesLogix.Security.Owner records to you.
Now with SalesLogix 7.5.3 this same method returns an IList of Sage.Entity.Interfaces.IOwner instead. So what was once:
System.Collections.Generic.IList<Sage.SalesLogix.Security.Owner> teams = Sage.SalesLogix.Security.Owner.GetTeamsByUser(user);
Now needs to be:
System.Collections.Generic.IList<Sage.Entity.Interfaces.IOwner>
teams = Sage.SalesLogix.Security.Owner.GetTeamsByUser(user);



