Beispiel #1
0
 public static IEnumerable<DAL.NotesList> NotesRecordsList(String TypeID, String RefID)
 {
     try
        {
        IRecordView2 objtext = new BALNotes();
        IEnumerable<DAL.NotesList> listRecord = (IEnumerable<DAL.NotesList>)objtext.RecordList(TypeID, RefID);
        return listRecord;
        }
        catch (Exception ex)
        {
        throw;
        }
 }