Ejemplo n.º 1
0
 public static List<ACC_Account> ViewAllACC_JournalsByAccountID(DateTime startDate, DateTime endDate)
 {
     List<ACC_Account> aCC_Accounts = new List<ACC_Account>();
     SqlACC_AccountProvider sqlACC_AccountProvider = new SqlACC_AccountProvider();
     aCC_Accounts = sqlACC_AccountProvider.ViewAllACC_JournalsByDateRange(startDate, endDate);
     return aCC_Accounts;
 }