public string multi_station([System.Web.Http.FromBody]string[] sindex) { string ret = ""; TempModel temp = new TempModel(); if( sindex.Length != 0 ) { ret = temp.multi_station(sindex); } else { ret = "error"; } return ret; }