public List <NL_Loans> GetCustomerLoans(int customerID, int userID) { var stra = new GetCustomerLoans(customerID); stra.Context.CustomerID = customerID; stra.Context.UserID = userID; stra.Execute(); return(stra.Loans.ToList()); }
public void GetCustomerLoansTest() { GetCustomerLoans s = new GetCustomerLoans(371); s.Execute(); s.Loans.ForEach(l => m_oLog.Debug(l)); }