public UpdateTitherCommandHandler(NotificationContext notificationContext,
                                   IMapper mapper,
                                   ITitherRepository titherRepository)
 {
     _notificationContext = notificationContext;
     _mapper           = mapper;
     _titherRepository = titherRepository;
 }
 public ListTitherQueryHandler(IMapper mapper, ITitherRepository titherRepository)
 {
     _mapper           = mapper;
     _titherRepository = titherRepository;
 }
 public DeleteTitherCommandHandler(NotificationContext notificationContext,
                                   ITitherRepository titherRepository)
 {
     _notificationContext = notificationContext;
     _titherRepository    = titherRepository;
 }