Skip to content

Instantly share code, notes, and snippets.

@efeozyer
Last active April 5, 2019 20:26
Show Gist options
  • Save efeozyer/53c4693c98ecad24c6b76ff350cbdcb5 to your computer and use it in GitHub Desktop.
Save efeozyer/53c4693c98ecad24c6b76ff350cbdcb5 to your computer and use it in GitHub Desktop.
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