Start adding MonthlyInventory

This commit is contained in:
2016-09-16 12:22:50 -04:00
parent 3bdd202e81
commit 679ef75152
6 changed files with 38 additions and 5 deletions
@@ -57,5 +57,16 @@ namespace InventoryTraker.Web.Controllers
return BetterJson(report.ToArray());
}
[HttpGet]
public ActionResult MonthlyInventory()
{
return View();
}
public ActionResult MonthlyInventory(DateTime month)
{
return BetterJson(true);
}
}
}