public static class Utils { public static bool IsAny(this IEnumerable data) { return data != null && data.Any(); } }