//private IConverter _converter;


        public TrialbalanceReportController(ITrialbalanceReportService services, IGeneratePdf generatePdf, IFundTypeCodeService fundService, IAccountHistoryService accountHistoryService)
        {
            this.services              = services;
            this.generatePdf           = generatePdf;
            this.fundService           = fundService;
            this.accountHistoryService = accountHistoryService;
        }
Exemple #2
0
 public LoanPositionController(ITrialbalanceReportService services, IGeneratePdf generatePdf)
 {
     this.services    = services;
     this.generatePdf = generatePdf;
 }