diff --git a/src/PowderCoating.Application/DTOs/Customer/CustomerDtos.cs b/src/PowderCoating.Application/DTOs/Customer/CustomerDtos.cs index 146bf3d..743be30 100644 --- a/src/PowderCoating.Application/DTOs/Customer/CustomerDtos.cs +++ b/src/PowderCoating.Application/DTOs/Customer/CustomerDtos.cs @@ -168,6 +168,8 @@ public class CustomerListDto public decimal CurrentBalance { get; set; } public bool IsActive { get; set; } public DateTime? LastContactDate { get; set; } + public bool NotifyByEmail { get; set; } + public bool NotifyBySms { get; set; } } public class AddCreditDto diff --git a/src/PowderCoating.Web/Views/Customers/Details.cshtml b/src/PowderCoating.Web/Views/Customers/Details.cshtml index c34df13..86d432f 100644 --- a/src/PowderCoating.Web/Views/Customers/Details.cshtml +++ b/src/PowderCoating.Web/Views/Customers/Details.cshtml @@ -132,6 +132,35 @@ }
+