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

Commit

Permalink
Update hospital address API to use HTTP PUT
Browse files Browse the repository at this point in the history
  • Loading branch information
lorddev committed Nov 10, 2015
1 parent eaf87d5 commit 4626371
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SnapMD.ConnectedCare.Sdk/HospitalApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ public ApiResponseV2<HospitalInfo> GetHospital()
return o;
}

public void UpdateAddress(HospitalAddress address)
public HospitalAddress UpdateAddress(HospitalAddress address)
{
Post("hospitaladdress", address);
return Put<HospitalAddress>("hospitaladdress", address);
}
}
}

0 comments on commit 4626371

Please sign in to comment.