package org.initialde.yakasave.Infrastructure.Persistence;

import org.springframework.stereotype.Repository;

@Repository
public class ContributionRepositoryImpl implements ContributionRepository {
    private final JpaContributionRepository jpaContributionRepository;

    public ContributionRepositoryImpl(JpaContributionRepository jpaContributionRepository) {
        this.jpaContributionRepository = jpaContributionRepository;
    }

    @Override
    public void deleteAll() {
        jpaContributionRepository.deleteAll();
    }
}
