static class Extensions {
public static Quote MinPrice( this IEnumerable<Quote> source) {
	return source.Aggregate( (t, s) => t.Price < s.Price ? t : s );
}
}
