예제 #1
0
        public void Article_CreateArticle()
        {
            string        title      = "title";
            string        content    = "<h1>content</h1>";
            string        contentBio = "this is content";
            string        category   = "C#";
            List <string> tags       = new List <string> {
                "dotnet", "python"
            };
            ArticleDTO dto = new ArticleDTO()
            {
                Title      = title,
                Content    = content,
                ContentBio = contentBio,
                Category   = category,
                Tags       = tags
            };

            articleApplicationImpl.CreateArticle(dto);
        }