fake stock forecast dao deleted

This commit is contained in:
Michał Michaluk
2017-12-11 12:45:31 +01:00
parent 3bb6f8a5b3
commit 113cd023c5

View File

@@ -1,16 +0,0 @@
package pl.com.bottega.factory.stock.forecast;
import org.springframework.data.rest.core.annotation.RepositoryRestResource;
import org.springframework.data.rest.core.annotation.RestResource;
import org.springframework.stereotype.Repository;
import pl.com.bottega.factory.product.management.ProductDescriptionEntity;
import pl.com.bottega.tools.ProjectionRepository;
@Repository
@RepositoryRestResource(
path = "stock-forecasts-ex", collectionResourceRel = "stock-forecasts-ex")
public interface StockForecastDao extends ProjectionRepository<ProductDescriptionEntity, Long> {
@RestResource(path = "refNos", rel = "refNos")
ProductDescriptionEntity findByRefNo(String refNo);
}