-
-
Save dcomartin/a7b2d6082d9d7a5c2fefc01ad9b289ae to your computer and use it in GitHub Desktop.
This file contains 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 interface IProductService | |
{ | |
Task<Product> GetProductBySku(string sku); | |
Task<Product> GetProductForSaleBySku(string sku); | |
Task<List<Product>> GetProducts(); | |
Task UpdateProductInfo(); | |
Task IncreasePrice(string sku, decimal price); | |
Task DecreasePrice(string sku, decimal price); | |
Task IncreaseCost(string sku, decimal cost); | |
Task DecreaseCost(string sku, decimal cost); | |
Task ShipProduct(string sku, Guid salesOrderId); | |
Task ReceiveProduct(string sku, Guid purchaseOrderId); | |
Task AdjustInventory(string sku, int quantity); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment