source:
StockMaster/Services/IWarehouseService.cs
| Last change on this file was dfe03b8, checked in by , 3 days ago | |
|---|---|
|
|
| File size: 317 bytes | |
| Line | |
|---|---|
| 1 | using System.Collections.Generic; |
| 2 | using System.Threading.Tasks; |
| 3 | using StockMaster.Models; |
| 4 | |
| 5 | namespace StockMaster.Services |
| 6 | { |
| 7 | public interface IWarehouseService |
| 8 | { |
| 9 | Task<List<WarehouseStock>> GetWarehouseStockAsync(int warehouseId); |
| 10 | Task<Dictionary<string, int>> GetStockSummaryAsync(); |
| 11 | } |
| 12 | } |
Note:
See TracBrowser
for help on using the repository browser.
