Guest User

Untitled

a guest
Dec 11th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. [HttpGet("{facilityId}/profile/{profileLanguageCode}")]
  2. [ProducesResponseType((int)HttpStatusCode.OK, Type = typeof(WebApiResponseModel<FacilityDataModel>))]
  3. public async Task<IActionResult> GetFacilitydata([FromRoute]FacilityDataSearchModel getFacilityDataRequest)
  4. {
  5.  
  6. }
  7.  
  8. public class FacilityDataSearchModel
  9. {
  10. public string FacilityId { get; set; }
  11.  
  12. public string ProfileLanguageCode { get; set; }
  13.  
  14. [FromQuery(Name = "providerId")]
  15. public List<string> ProviderIds { get; set; } = new List<string>();
  16. }
  17.  
  18. http://localhost:5000/api/FacilityProfile/000018211/profile/EN/ProviderIds=["000030778"]
  19.  
  20. http://localhost:5000/api/FacilityProfile/000018211/profile/EN/?ProviderIds=["000030778"]
Add Comment
Please, Sign In to add comment