I have 5 plus elements in a view. Is there a cleaner way to check for nulls and set the values if they are before saving in my controller? For example:
string FN = viewModel.FirstName;
if (String.IsNullOrEmpty(FN))
{
FN = "N/A";
}
//copy and paste for lastname
//copy and paste for address
//etc