Beispiel #1
0
    public int InsertContent(string Content, string Id)
    {
        int id        = Convert.ToInt32(Id);
        int rowAffect = new Content_BL().SaveContent(Content, Id);

        return(rowAffect);
    }
Beispiel #2
0
    public List <ContentOl> GetContent(string Id)
    {
        List <ContentOl> content = new Content_BL().GetContent(Id);

        return(content);
    }