source: StockMaster/Services/IWarehouseService.cs

main
Last change on this file was dfe03b8, checked in by Ceyda <ceyda.huseini@…>, 2 days ago

Initialize StockMaster project

  • Property mode set to 100644
File size: 317 bytes
Line 
1using System.Collections.Generic;
2using System.Threading.Tasks;
3using StockMaster.Models;
4
5namespace 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.