
uk.co.mruoc.promo.usecase.account.AccountRepository Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of burger-promo Show documentation
Show all versions of burger-promo Show documentation
Burger promotion backend apis
The newest version!
package uk.co.mruoc.promo.usecase.account;
import uk.co.mruoc.promo.entity.account.Account;
import java.util.Collection;
import java.util.Optional;
public interface AccountRepository {
Optional find(String id);
void deleteAll();
void saveAll(Collection accounts);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy