public DeleteTitheCommandHandler(IMapper mapper, NotificationContext notificationContext, ITitheRepository titheRepository) { _mapper = mapper; _notificationContext = notificationContext; _titheRepository = titheRepository; }
public ListTitheQueryHandler(IMapper mapper, ITitheRepository titheRepository) { _mapper = mapper; _titheRepository = titheRepository; }
public GetTitheByTitherIdQueryHandler(IMapper mapper, ITitheRepository titheRepository) { _mapper = mapper; _titheRepository = titheRepository; }