public HistoryController(
     IOperationsHistoryService operationsHistoryService,
     IRequestContext requestContext,
     IMapper mapper)
 {
     _operationsHistoryService = operationsHistoryService;
     _requestContext           = requestContext;
     _mapper = mapper;
 }
 public OperationsHistoryController(IMapper mapper, IOperationsHistoryService operationsHistoryService)
 {
     _mapper = mapper;
     _operationsHistoryService = operationsHistoryService;
 }
Пример #3
0
 public OperationsHistoryController(IOperationsHistoryService service, IMapper mapper)
 {
     _service = service;
     _mapper  = mapper;
 }
Пример #4
0
 public TransactionHandler(IAddTransactionService service, IOperationsHistoryService operationsHistoryService)
 {
     _service = service;
     _operationsHistoryService = operationsHistoryService;
 }