Exemplo n.º 1
0
 /// <summary>
 ///     This methis allows to know if a name is already in use by other list
 /// </summary>
 /// <param name="listName">
 ///     The  listName to check
 /// </param>
 /// <author>
 ///     Luis Gonzalo Quijada Romero
 /// </author>
 /// <returns>
 ///     Returns a boolean, does this name is already in use?
 /// </returns>
 public Boolean listNameUsed(String listName)
 {
     if (listTable.get("name", listName).Count() > 0)
     {
         return(true);
     }
     return(false);
 }