Ejemplo n.º 1
0
        public List <StockingReport_Result> GetProductStocking(int productId, DateTime startDate, DateTime endDate, int tenantId)
        {
            var db       = new InventoryDb();
            var stocking = db.StockingReport(productId, startDate, endDate, tenantId).ToList();

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