Example #1
0
        public List <ConsumptionReport_Result> GetcounsumptionReport(int productId, DateTime startDate, DateTime endDate, int tenantId)
        {
            List <Item> response = new List <Item>();
            var         db       = new InventoryDb();

            return(db.ConsumptionReport(productId, startDate, endDate, tenantId).ToList());
        }