Exemplo n.º 1
0
 public static bool IsNotEmpty <T>(this DataBindList <T> dataBindList)
 {
     return(dataBindList != null && dataBindList.List.IsNotEmpty());
 }
Exemplo n.º 2
0
 public static bool IsNullOrEmpty <T>(this DataBindList <T> dataBindList)
 {
     return(dataBindList == null || dataBindList.List.IsNullOrEmpty());
 }