using System.Collections.Generic; using System.Threading.Tasks; using StockMaster.Models; namespace StockMaster.Services { public interface IWarehouseService { Task> GetWarehouseStockAsync(int warehouseId); Task> GetStockSummaryAsync(); } }