Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Created December 5, 2016 15:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dcomartin/42aa325462139a9e36781604ec730ff0 to your computer and use it in GitHub Desktop.
Save dcomartin/42aa325462139a9e36781604ec730ff0 to your computer and use it in GitHub Desktop.
public interface IProductManager
{
void AddProduct(Product product);
void UpdateProduct(int productId, Product product);
void DeleteProduct(int productId);
void IncreaseInventory(int productId, ProductInventory inventory);
void DecreaseInventory(int productId, ProductInventory inventory);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment