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