public static List GetCustomers ( List customernumbers)
{
var custs = RepositoryCustomers.Find(x=> customernumbers.Contains(x.CustomerNo));
return custs.ToList();
}
Seems really easy once you know how.
No comments:
Post a Comment
Comments are welcome, but are moderated and may take a wee while before shown.