Skip to content
This repository has been archived by the owner on Dec 20, 2024. It is now read-only.

Commit

Permalink
remove address as a required field for patient profile
Browse files Browse the repository at this point in the history
  • Loading branch information
Number1MSFanboy committed Nov 23, 2015
1 parent 4626371 commit f8459a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SnapMD.ConnectedCare.ApiModels/UserProfilesResult.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit f8459a7

Please sign in to comment.