public static IEnumerable<DAL.PaymentList> PaymentRecordList(String ConsumerId, String ConsumerType, String PaymentDate) { try { IListView objtext = new BALPayment(); IEnumerable<DAL.PaymentList> listRecord = (IEnumerable<DAL.PaymentList>)objtext.RecordList(ConsumerId, ConsumerType, PaymentDate); return listRecord; } catch (Exception ex) { throw; } }
public static IEnumerable<DAL.PaymentList> AccountRecordList(String PropertyID, String OwnerID, String ConsumerID, String ConsumerType) { try { IListView4 objtext = new BALPayment(); IEnumerable<DAL.PaymentList> listRecord = (IEnumerable<DAL.PaymentList>)objtext.RecordList(PropertyID, OwnerID, ConsumerID, ConsumerType); return listRecord; } catch (Exception ex) { throw; } }