Exemple #1
0
 public static IEnumerable<DAL.CommonSearchList> SearchRecordList(String Field, String value)
 {
     try
        {
        ISearchResult objtext = new BALSearch();
        IEnumerable<DAL.CommonSearchList> listRecord = (IEnumerable<DAL.CommonSearchList>)objtext.SearchResultList(Field, value);
        return listRecord;
        }
        catch (Exception ex)
        {
        throw;
        }
 }