Last active
April 5, 2019 20:26
-
-
Save efeozyer/53c4693c98ecad24c6b76ff350cbdcb5 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
public class IProductRepository { | |
bool Create(Product product); | |
bool Delete(int productId); | |
IEnumerable<Product> GetAll(); | |
void DeleteAll(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment