示例#1
0
 public FundsController(IFundService fundService, IExportingService exportingService, IGPDynamicsService gpDynamicsService)
 {
     _fundService       = fundService;
     _exportingService  = exportingService;
     _gpDynamicsService = gpDynamicsService;
 }
示例#2
0
 public FundService(IGPDynamicsService gpDynamicsService, IAnnualReportsDbFundRepository fundsRepository, IUnitOfWork <AnnualReportsDbContext> uow)
 {
     _gpDynamicsService    = gpDynamicsService;
     this._fundsRepository = fundsRepository;
     _uow = uow;
 }