Upload project.
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
@@ -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; }
|
||||
}
|
||||
}
|
||||
@@ -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; }
|
||||
}
|
||||
}
|
||||
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user