示例#1
0
 public TransactionsController(ITransactionService transactionService, IOfxFileService ofxFileService, IMapper mapper)
 {
     _transactionSevice = transactionService;
     _ofxFileService    = ofxFileService;
     _mapper            = mapper;
 }
示例#2
0
 public HomeController(ITransactionService transactionService, IOfxFileService ofxFileService, IFileService fileService)
 {
     this._transactionService = transactionService;
     this._ofxFileService     = ofxFileService;
     this._fileService        = fileService;
 }