Created
March 19, 2021 01:54
-
-
Save srdelarosa/2d34bd840f07e6827373b77ba976faa6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.newhorizons.takeitnow.products.application.mainmodule.service; | |
import com.newhorizons.takeitnow.products.application.mainmodule.dto.ProductDto; | |
import java.util.List; | |
import java.util.Optional; | |
public interface IProductService { | |
List<ProductDto> getAll(); | |
Optional<ProductDto> getProduct(long productId); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment