示例#1
0
        public IActionResult AddTag(Tag t)
        {
            var db = new QuestionRepository(_conn);

            db.AddTag(t);
            return(Redirect("/home/Question"));
        }