use of com.rafaelvieira.letmebuy.entities.Product in project letmebuy by rafaelrok.
the class Factory method createProduct.
public static Product createProduct() {
Product product = new Product(1L, "Phone", "Good Phone", 800.0, "https://img.com/img.png", Instant.parse("2020-10-20T03:00:00Z"));
product.getCategories().add(new Category(1L, "Electronics"));
return product;
}
Aggregations