This commit is contained in:
mmrbnjd
2024-05-07 17:49:02 +03:30
parent 91fcef70d7
commit b5546810b1
6 changed files with 217 additions and 52 deletions

View File

@@ -10,11 +10,11 @@ namespace Shared.DTOs
public class RCustomer
{
[Display(Name ="شناسه")]
public int ID { get; set; }
public int? ID { get; set; }
[Display(Name = "نام کامل")]
public string FullName { get; set; }
[Display(Name = "نوع مشتری")]
public string CustomerTypeTitle { get; set; }
public string? CustomerTypeTitle { get; set; }
[Display(Name = "تلفن")]
public string Phone { get; set; }
[Display(Name = "پست الکترونیک")]
@@ -24,15 +24,15 @@ namespace Shared.DTOs
[Display(Name = "کد اقتصادی")]
public string? EconomicCode { get; set; }
[Display(Name = "کد شعبه")]
public string? BranchID { get; set; }
public string? BranchID { get; set; }//
[Display(Name = "توضیحات")]
public string? Info { get; set; }
public string? Info { get; set; }//
//------------
public CustomerType CustomerType { get; set; }
public string? ZipCode { get; set; }
public string? MeliCode { get; set; }
public string? PassportNumber { get; set; }
public string? PassportNumber { get; set; }//
}
}