Пример #1
0
        public AgedBalancesReport LoadAgedBalancesReportForAllClients(AgedBalancesReportType reportType, FacilityType facilityType, bool isSalvageIncluded, int ClientFacilityType)
        {
            ArgumentChecker.ThrowIfNull(reportType, "reportType");
            ArgumentChecker.ThrowIfNull(facilityType, "facilityType");

            return(repository.LoadAgedBalancesReportForAllClients(reportType, facilityType, isSalvageIncluded, ClientFacilityType));
        }
Пример #2
0
 public AgedBalancesReport LoadAgedBalancesReport(Date dateAsAt, int clientId, AgedBalancesReportType reportType, int ClientFacilityType)
 {
     ArgumentChecker.ThrowIfNull(dateAsAt, "dateAsAt");
     return(repository.LoadAgedBalancesReport(dateAsAt, clientId, reportType, ClientFacilityType));
 }