AccountingWarehouseProducts.../AccountingWarehouseProducts/AccountingWarehouseProductsContracts/ViewModels/SupplierViewModel.cs

25 lines
726 B
C#

using AccountingWarehouseProductsDataModels.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AccountingWarehouseProductsContracts.ViewModels
{
public class SupplierViewModel : ISupplierModel
{
public int Id { get; set; }
[DisplayName("Название поставщика")]
public string SupplierName { get; set; } = string.Empty;
[DisplayName("Контактное лицо")]
public string ContactPerson { get; set; } = string.Empty;
[DisplayName("Номер телефона")]
public string Phone { get; set; } = string.Empty;
}
}