* Fixed DTOs issues

* Added service to save data
This commit is contained in:
2025-08-28 14:50:46 +02:00
parent 23c26b4c65
commit 47f37d016d
13 changed files with 280 additions and 231 deletions

View File

@@ -4,9 +4,9 @@ public class CustomerDto : DtoBase
{
public string CustNum { get; set; }
public int CustSeq { get; set; }
public string Contact1 { get; set; }
public string Contact2 { get; set; }
public string Contact3 { get; set; }
public string? Contact1 { get; set; }
public string? Contact2 { get; set; }
public string? Contact3 { get; set; }
public string Phone1 { get; set; }
public string Phone2 { get; set; }
public string Phone3 { get; set; }