public ConfigurationController(IProfitLossService profitLossService)
 {
     this._profitLossService = profitLossService;
 }
Example #2
0
 public PLController(IProfitLossService profitLossService, IEmailService emailService, IFileDownloadService fileDownloadService)
 {
     this._profitLossService   = profitLossService;
     this._emailService        = emailService;
     this._fileDownloadService = fileDownloadService;
 }