Files
moadiran/Shared/DTOs/RCustomer.cs

39 lines
1.2 KiB
C#
Raw Permalink Normal View History

2024-05-05 18:15:37 +03:30
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Shared.DTOs
{
public class RCustomer
{
[Display(Name ="شناسه")]
2024-05-07 17:49:02 +03:30
public int? ID { get; set; }
2024-05-05 18:15:37 +03:30
[Display(Name = "نام کامل")]
public string FullName { get; set; }
[Display(Name = "نوع مشتری")]
2024-05-07 17:49:02 +03:30
public string? CustomerTypeTitle { get; set; }
2024-05-05 18:15:37 +03:30
[Display(Name = "تلفن")]
2024-05-08 17:25:02 +03:30
public string? Phone { get; set; }
//[Display(Name = "پست الکترونیک")]
2024-05-06 17:13:12 +03:30
public string? Email { get; set; }
[Display(Name = "آدرس")]
public string? Address { get; set; }
2024-05-05 18:15:37 +03:30
[Display(Name = "کد اقتصادی")]
public string? EconomicCode { get; set; }
2024-05-08 17:25:02 +03:30
//[Display(Name = "کد شعبه")]
2024-05-07 17:49:02 +03:30
public string? BranchID { get; set; }//
2024-05-08 17:25:02 +03:30
//[Display(Name = "توضیحات")]
2024-05-07 17:49:02 +03:30
public string? Info { get; set; }//
2024-05-06 17:13:12 +03:30
//------------
public CustomerType CustomerType { get; set; }
public string? ZipCode { get; set; }
public string? MeliCode { get; set; }
2024-05-07 17:49:02 +03:30
public string? PassportNumber { get; set; }//
2024-05-06 17:13:12 +03:30
2024-05-05 18:15:37 +03:30
}
}