Esempio n. 1
0
 public IntentionHandler(
     IIntentionRepository _intentionRepository,
     IProspectRepository _prospectRepository,
     IUnitOfWork uow,
     IMediatorHandler bus,
     INotificationHandler <DomainNotification> notifications)
     : base(uow, bus, notifications)
 {
     intentionRepository = _intentionRepository;
     prospectRepository  = _prospectRepository;
     Bus = bus;
 }
Esempio n. 2
0
 public IntentionAppService(
     IMapper mapper,
     IIntentionRepository intentionRepository,
     IProspectRepository prospectRepository,
     IMediatorHandler bus,
     IConfigurationProvider mapperConfigurationProvider)
 {
     _mapper = mapper;
     _intentionRepository = intentionRepository;
     _prospectRepository  = prospectRepository;
     _bus = bus;
     _mapperConfigurationProvider = mapperConfigurationProvider;
 }
 public MainViewModel(IIntentionRepository intentionRepository)
 {
     this.intentionRepository = intentionRepository;
 }