Example #1
0
        // POST: api/Lists
        public void Post([FromBody]string[] value)
        {
            using (var ctx = new TodoAppEntities())
            {
                ctx.addNames(value[0]);

            }
        }