package com.theorchard.javaowsassetbulkscript;

import com.theorchard.javaowsassetbulkscript.models.ImportedProduct;
import com.theorchard.javaowsassetbulkscript.models.LabelStatus;
import org.springframework.data.repository.PagingAndSortingRepository;
import org.springframework.data.rest.core.annotation.RepositoryRestResource;

import java.util.List;

@RepositoryRestResource
public interface ImportedProductRepository extends PagingAndSortingRepository<ImportedProduct, String> {
    List<ImportedProduct> findByStatus(String status);
}
