// PUT
        public void Put(string patientId, string rowKey, string url, string tag, string markerTime)
        {
            var pv = new PathfinderMarker();

            pv.Update(patientId, rowKey, url, tag, markerTime, GetStorConnStr());
        }
 // POST api/values
 public void Post([FromBody] PathfinderMarker marker)
 {
     marker.Save(marker.PatientID, marker.RowKey, marker.MarkerTime, marker.Tag, marker.FileName, GetStorConnStr());
 }