コード例 #1
0
        public IHttpActionResult Get(string eNodebName)
        {
            var query = _service.GetSectorIds(eNodebName);

            return(query == null ? (IHttpActionResult)BadRequest("Wrong ENodeb Name!") : Ok(query));
        }
コード例 #2
0
ファイル: CellControllers.cs プロジェクト: xuhaoa/LtePlatform
 public List <byte> Get(string eNodebName)
 {
     return(_service.GetSectorIds(eNodebName));
 }