Ejemplo n.º 1
0
 public CallsDueReport LoadCustomerWatchReportForAllClients(PeriodReportType reportType, BalanceRange balanceRange, FacilityType facilityType, bool isSalvageIncluded, string orderByString)
 {
     ArgumentChecker.ThrowIfNull(facilityType, "facilityType");
     ArgumentChecker.ThrowIfNull(balanceRange, "balanceRange");
     return(repository.LoadCustomerWatchReportForAllClients(reportType, balanceRange, facilityType, isSalvageIncluded, orderByString));
 }
Ejemplo n.º 2
0
 public CallsDueReport LoadCallsDueReport(int clientId, PeriodReportType reportType, BalanceRange balanceRange, string orderByString)
 {
     ArgumentChecker.ThrowIfNull(balanceRange, "balanceRange");
     return(repository.LoadCallsDueReport(clientId, reportType, balanceRange, orderByString));
 }