コード例 #1
0
ファイル: LookUpController.cs プロジェクト: erezdamari/MyDive
        public IHttpActionResult GetBottomTypes()
        {
            LogControllerEntring("bottom");
            IHttpActionResult result = Ok();

            try
            {
                result = Ok(m_Logic.GetBottomTypes());
            }
            catch (Exception ex)
            {
                result = LogException(ex, null);
            }

            return(result);
        }