This commit is contained in:
mmrbnjd
2024-10-20 16:46:27 +03:30
parent 42a5e76cde
commit 847b92e56f
4 changed files with 44 additions and 19 deletions

View File

@@ -1,17 +1,22 @@
using System.ComponentModel.DataAnnotations;
using System.Xml.Linq;
namespace Shared.DTOs
{
public enum CustomerType:int
{
[Display(Name = "حقیقی")]
[Display(Name = "حقیقی با کد اقتصادی")]
genuine = 1,
[Display(Name = "حقوقی")]
legal = 2,
[Display(Name = "مشارکت مدنی")]
CivilPartnership = 3,
[Display(Name = "اتباع عیر ایرانی")]
NonIranianNationals = 4
[Display(Name = "اتباع عیر ایرانی با کد اقتصادی")]
NonIranianNationals = 4,
[Display(Name = "حقیقی با شناسه ملی")]
genuineByMeliCode = 5,
[Display(Name = "اتباع عیر ایرانی با شناسه ملی")]
NonIranianNationalsByMeliCode = 6
}
}