using ElectronicsShopDataModels.Enums;
using ElectronicsShopDataModels.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ElectronicsShopContracts.ViewModels
{
	public class PaymeantViewModel : IPaymentModel {
		public int ID { get; set; }

		public int OrderID { get; set; }

		[DisplayName("Cумма оплаты продукта")]
		public double SumPayment { get; set; }

        [DisplayName("Статус оплаты")]
        public PaymeantOption PayOption { get; set; } = PaymeantOption.Неоплачено;

		[DisplayName("Клиент")]
		public int ClientID { get; set; }

        public DateTime DatePaymeant { get; set; }
    }
}