using System; using System.Collections.Generic; using System.Threading.Tasks; using InventoryService.Api.Models; namespace InventoryService.Api.Services { public interface IInventoryData { Task> GetInventoryBySkus(IEnumerable skus); Task CreateInventory(string sku, int quantity, DateTime modified); Task UpdateInventory(string sku, int quantityChanged); } }