Blog.Web.Api.Controllers.DebugController.Post C# (CSharp) 메소드

Post() 개인적인 메소드

private Post ( [ comment ) : bool
comment [
리턴 bool
        public bool Post([FromBody] Comment comment)
        {
            try
            {
                return true;
            }
            catch
            {
                return false;
            }
        }
    }
DebugController