コード例 #1
0
ファイル: Service1.svc.cs プロジェクト: HafsaMkhan/Niche-Blog
        public bool EditBlog(string titl, string write, string req)
        {
            BlogDL B = new BlogDL();
            bool   s = B.EditBlog(titl, write, req);

            return(s);
        }
コード例 #2
0
        public void EditBlog(string titl, string write, string req)
        {
            BlogDL B = new BlogDL();

            B.EditBlog(titl, write, req);
        }