示例#1
0
 public ContaController
 (
     IContaService contaService,
     IMapper mapper,
     INotificacaoEvent notificacaoEvent
 )
     : base(notificacaoEvent)
 {
     _contaService = contaService;
     _mapper       = mapper;
 }
示例#2
0
 public ContaService
 (
     IContaRepository contaRepository,
     IUnitOfWork unitOfWork,
     INotificacaoEvent notificacaoEvent
 )
     : base(notificacaoEvent)
 {
     _contaRepository = contaRepository;
     _unitOfWork      = unitOfWork;
 }
示例#3
0
 public Service(INotificacaoEvent notificacaoEvent)
 {
     _notificacaoEvent = notificacaoEvent;
 }
示例#4
0
 public ControllerSuperType(INotificacaoEvent notificacaoEvent)
 {
     _notificacaoEvent = notificacaoEvent;
 }