70 lines
2.2 KiB
C#
70 lines
2.2 KiB
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using System.Reflection;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Step02.Models;
|
|
|
|
/// <summary>
|
|
/// Represents the data structure for a form capturing details of a new customer, including personal information and contact details.<br/>
|
|
/// Class used in <see cref="Step02a_AccountOpening"/>, <see cref="Step02b_AccountOpening"/> samples
|
|
/// </summary>
|
|
public class NewCustomerForm
|
|
{
|
|
[JsonPropertyName("userFirstName")]
|
|
public string UserFirstName { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("userLastName")]
|
|
public string UserLastName { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("userDateOfBirth")]
|
|
public string UserDateOfBirth { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("userState")]
|
|
public string UserState { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("userPhoneNumber")]
|
|
public string UserPhoneNumber { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("userId")]
|
|
public string UserId { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("userEmail")]
|
|
public string UserEmail { get; set; } = string.Empty;
|
|
|
|
public NewCustomerForm CopyWithDefaultValues(string defaultStringValue = "Unanswered")
|
|
{
|
|
NewCustomerForm copy = new();
|
|
PropertyInfo[] properties = typeof(NewCustomerForm).GetProperties();
|
|
|
|
foreach (PropertyInfo property in properties)
|
|
{
|
|
// Get the value of the property
|
|
string? value = property.GetValue(this) as string;
|
|
|
|
// Check if the value is an empty string
|
|
if (string.IsNullOrEmpty(value))
|
|
{
|
|
property.SetValue(copy, defaultStringValue);
|
|
}
|
|
else
|
|
{
|
|
property.SetValue(copy, value);
|
|
}
|
|
}
|
|
|
|
return copy;
|
|
}
|
|
|
|
public bool IsFormCompleted()
|
|
{
|
|
return !string.IsNullOrEmpty(UserFirstName) &&
|
|
!string.IsNullOrEmpty(UserLastName) &&
|
|
!string.IsNullOrEmpty(UserId) &&
|
|
!string.IsNullOrEmpty(UserDateOfBirth) &&
|
|
!string.IsNullOrEmpty(UserState) &&
|
|
!string.IsNullOrEmpty(UserEmail) &&
|
|
!string.IsNullOrEmpty(UserPhoneNumber);
|
|
}
|
|
}
|