コード例 #1
0
 public UpdateTitherCommandHandler(NotificationContext notificationContext,
                                   IMapper mapper,
                                   ITitherRepository titherRepository)
 {
     _notificationContext = notificationContext;
     _mapper           = mapper;
     _titherRepository = titherRepository;
 }
コード例 #2
0
 public ListTitherQueryHandler(IMapper mapper, ITitherRepository titherRepository)
 {
     _mapper           = mapper;
     _titherRepository = titherRepository;
 }
コード例 #3
0
 public DeleteTitherCommandHandler(NotificationContext notificationContext,
                                   ITitherRepository titherRepository)
 {
     _notificationContext = notificationContext;
     _titherRepository    = titherRepository;
 }