Added last endpoints for delivery Note

This commit is contained in:
Cristiano
2025-11-14 18:11:54 +01:00
parent d7cf245d35
commit 20bbccf883
7 changed files with 110 additions and 3 deletions

View File

@@ -9,7 +9,7 @@ public class Supplier
[Required, MaxLength(100)] public string? Email { get; set; }
[Required, MaxLength(30)] public string? Phone { get; set; }
[Required, MaxLength(100)] public string? Address { get; set; }
[Required] public int ZipCode { get; set; }
[Required,MaxLength(5),MinLength(5)] public string? ZipCode { get; set; }
[Required, MaxLength(100)] public string? City { get; set; }
[Required] public int DeliveryDelay { get; set; }