Create a first migration
This commit is contained in:
@@ -175,33 +175,5 @@ namespace InventoryTraker.Web.Controllers
|
||||
};
|
||||
return inventoryTypeReportItems;
|
||||
}
|
||||
|
||||
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; }
|
||||
}
|
||||
|
||||
public class InventoryTypeReport
|
||||
{
|
||||
public DateTime Month { get; set; }
|
||||
public IEnumerable<InventoryTypeReportItem> Items { get; set; }
|
||||
}
|
||||
|
||||
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; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user