Esempio n. 1
0
 public TipoAppCommandHandler(ITipoAppRepository tipoAppRepository,
                              IUnitOfWork uow,
                              IMediatorHandler bus,
                              INotificationHandler <DomainNotification> notifications) : base(uow, bus, notifications)
 {
     _tipoAppRepository = tipoAppRepository;
     _bus = bus;
 }
 public TipoAppAppService(IMapper mapper, IMediatorHandler bus, ITipoAppRepository tipoAppRepository)
 {
     _mapper            = mapper;
     _bus               = bus;
     _tipoAppRepository = tipoAppRepository;
 }