Create a first migration

This commit is contained in:
2016-09-20 09:08:16 -04:00
parent 3a4fd9f2f2
commit 916c1f0f59
12 changed files with 406 additions and 70 deletions
@@ -0,0 +1,15 @@
using InventoryTraker.Web.Core;
namespace InventoryTraker.Web.Models
{
public class InventoryReportItem
{
public Inventory Inventory { get; set; }
public int BeginningQuantity { get; set; }
public int AddedQuantity { get; set; }
public int TotalAvailableQuantity { get; set; }
public int DistributedQuantity { get; set; }
public int AdjustmentQuantity { get; set; }
public int EndingQuantity { get; set; }
}
}
@@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
namespace InventoryTraker.Web.Models
{
public class InventoryTypeReport
{
public DateTime Month { get; set; }
public IEnumerable<InventoryTypeReportItem> Items { get; set; }
}
}
@@ -0,0 +1,13 @@
namespace InventoryTraker.Web.Models
{
public class InventoryTypeReportItem
{
public InventoryTypeViewModel InventoryType { get; set; }
public int BeginningQuantity { get; set; }
public int AddedQuantity { get; set; }
public int TotalAvailableQuantity { get; set; }
public int DistributedQuantity { get; set; }
public int AdjustmentQuantity { get; set; }
public int EndingQuantity { get; set; }
}
}