From f8459a72049ce7b8e49d5feead1892fce2d560a8 Mon Sep 17 00:00:00 2001 From: Dan Parker Date: Mon, 23 Nov 2015 10:29:07 -0800 Subject: [PATCH] remove address as a required field for patient profile --- SnapMD.ConnectedCare.ApiModels/UserProfilesResult.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SnapMD.ConnectedCare.ApiModels/UserProfilesResult.cs b/SnapMD.ConnectedCare.ApiModels/UserProfilesResult.cs index d9e5576e..2e534de2 100644 --- a/SnapMD.ConnectedCare.ApiModels/UserProfilesResult.cs +++ b/SnapMD.ConnectedCare.ApiModels/UserProfilesResult.cs @@ -74,7 +74,7 @@ public bool HasRequiredFields Dob.HasValue && !string.IsNullOrWhiteSpace(Gender) && Enthicity.HasValue && !string.IsNullOrWhiteSpace(Height) && !string.IsNullOrWhiteSpace(Weight) && - !string.IsNullOrWhiteSpace(MobilePhone) && !string.IsNullOrWhiteSpace(Address) && + !string.IsNullOrWhiteSpace(MobilePhone) && !string.IsNullOrWhiteSpace(TimeZone)) { return true;