Example #1
0
        public Keyword Post([FromBody] Keyword model)
        {
            // POST: api/User
            // this post method insert the new row or update the current row if there is a record with same ID
            KeywordDE de    = new KeywordDE();
            Keyword   sonuc = de.AddKeyword(model);

            return(sonuc);
        }