Esempio n. 1
0
 public UserService(
     IExportableTransaction exportableTransaction,
     IExportableCategory exportableCategory,
     IRepositoryFactory repositoryFactory,
     IUserMapper userMapper)
 {
     this.exportableTransaction = exportableTransaction;
     this.exportableCategory    = exportableCategory;
     this.repositoryFactory     = repositoryFactory;
     this.userMapper            = userMapper;
 }
Esempio n. 2
0
 public TransactionService(ITransactionMapper transactionMapper,
                           ICategoryMapper categoryMapper,
                           IExportableTransaction exportableTransaction,
                           IUserSessionService userService,
                           IRepositoryFactory repositoryFactory)
 {
     this.transactionMapper     = transactionMapper;
     this.categoryMapper        = categoryMapper;
     this.exportableTransaction = exportableTransaction;
     this.userService           = userService;
     this.repositoryFactory     = repositoryFactory;
 }