18 lines
447 B
C#
18 lines
447 B
C#
|
using ComputerStoreDataModels.Models;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace ComputerStoreContracts.BindingModels
|
|||
|
{
|
|||
|
public class ConsignmentBindingModel : IConsignmentModel
|
|||
|
{
|
|||
|
public int OrderID { get; set; }
|
|||
|
public int ProductID { get; set; }
|
|||
|
public double Price { get; set; }
|
|||
|
public int Count { get; set; }
|
|||
|
}
|
|||
|
}
|