Files
moadiran/Shared/Enums/CustomerType.cs

24 lines
797 B
C#
Raw Normal View History

2024-03-30 15:10:36 +03:30
using System.ComponentModel.DataAnnotations;
2024-10-20 16:46:27 +03:30
using System.Xml.Linq;
2024-03-30 15:10:36 +03:30
2024-05-01 15:42:21 +03:30
namespace Shared.DTOs
2024-03-30 15:10:36 +03:30
{
public enum CustomerType:int
{
2024-10-20 16:46:27 +03:30
[Display(Name = "حقیقی با کد اقتصادی")]
2024-03-30 15:10:36 +03:30
genuine = 1,
[Display(Name = "حقوقی")]
legal = 2,
[Display(Name = "مشارکت مدنی")]
CivilPartnership = 3,
2024-10-20 16:46:27 +03:30
[Display(Name = "اتباع عیر ایرانی با کد اقتصادی")]
NonIranianNationals = 4,
[Display(Name = "حقیقی با شناسه ملی")]
genuineByMeliCode = 5,
[Display(Name = "اتباع عیر ایرانی با شناسه ملی")]
2024-12-11 15:33:33 +03:30
NonIranianNationalsByMeliCode = 6,
[Display(Name = "بدون هویت")]
WithoutIdentity = 7
2024-10-20 16:46:27 +03:30
2024-03-30 15:10:36 +03:30
}
2024-12-11 15:33:33 +03:30
}