Beispiel #1
0
        public List <StockingItemsReport_Result> GetProductStockingItem(DateTime startDate, DateTime endDate, int tenantId)
        {
            var db            = new InventoryDb();
            var stockingitems = db.StockingItemsReport(startDate, endDate, tenantId).ToList();

            return(stockingitems);
            // return db.StockReport(productId, startDate, endDate).ToList();
        }