Coursework_ComputerStore_Li.../ComputerStoreContracts/BindingModels/ConsignmentBindingModel.cs

18 lines
447 B
C#
Raw Normal View History

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; }
}
}