コード例 #1
0
ファイル: ItemRepository.cs プロジェクト: snautiyal/Inventory
        public List <StockReport_Result> GetProductStock(int productId, int tenantId)
        {
            var db = new InventoryDb();

            return(db.StockReport(productId, tenantId).ToList());
        }