public async Task <IHttpActionResult> Create([FromBody] PatientModel patientmodel) { await DBUtility.CreatePatient(patientmodel); return(CreatedAtRoute("DefaultApi", new { id = patientmodel.Id }, patientmodel)); }