public static IEnumerable<DAL.CorrespondenceDocumentList> CorresPondenceDocumentRecordList(String ClientID, String SiteID, 
                                                                                           String propertyID, String OwnerID, String ConsumerID)
 {
     try
        {
        IListView5 objtext = new BALCorrespondenceDocument();
        IEnumerable<DAL.CorrespondenceDocumentList> listRecord = (IEnumerable<DAL.CorrespondenceDocumentList>)objtext.RecordList(ClientID,
                                                                                                              SiteID, propertyID, OwnerID, ConsumerID);
        return listRecord;
        }
        catch (Exception ex)
        {
        throw;
        }
 }