Upload project.

This commit is contained in:
StevenJW
2020-06-09 21:21:37 +01:00
parent 251cec2dac
commit 15556e92aa
196 changed files with 86759 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
namespace ThAmCo.Stock.Models.ViewModel
{
public class AdjustCostViewModel
{
public int Id { get; set; }
public double Cost { get; set; }
public string Name { get; set; }
public string Description { get; set; }
}
}

View File

@@ -0,0 +1,10 @@
namespace ThAmCo.Stock.Models.ViewModel
{
public class OrderRequestModel
{
public int Id { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public string Supplier { get; set; }
}
}

View File

@@ -0,0 +1,12 @@
namespace ThAmCo.Stock.Models.ViewModel
{
public class OrderRequestReviewModel
{
public int Id { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public int Quantity { get; set; }
public double Price { get; set; }
public string Supplier { get; set; }
}
}

View File

@@ -0,0 +1,17 @@
using System.Collections.Generic;
using ThAmCo.Stock.Models.Dto;
namespace ThAmCo.Stock.Models.ViewModel
{
public class VendorProductIndexModel
{
public IEnumerable<VendorProductDto> Products { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public string Vendor { get; set; }
public int? BrandId { get; set; }
public int? CategoryId { get; set; }
public double? PriceLow { get; set; }
public double? PriceHigh { get; set; }
}
}