Exemple #1
0
 public PromotionsSpeakMoreController(IMediator mediator, INotificationHandler <DomainNotification> notifications, IGenereteCalculationService genereteCalculationService, IMapper mapper, IDetailedCalculationConnectionValueReposiotry calculationConnection) : base(mediator, notifications)
 {
     _genereteCalculationService = genereteCalculationService;
     _mapper = mapper;
     _calculationConnection = calculationConnection;
 }
Exemple #2
0
 public GenereteCalculationService(IMediator mediator, INotificationHandler <DomainNotification> notification, IFixedRatesReposiotry fixedRatesReposiotry, IDetailedCalculationConnectionValueReposiotry detailedCalculationConnection, IUnitOfWork unitOfWork) : base(mediator, notification, unitOfWork)
 {
     _fixedRatesReposiotry          = fixedRatesReposiotry;
     _detailedCalculationConnection = detailedCalculationConnection;
 }