public static void PageCommentUpdate(int PageCommentID, int Status) { BINROTA.DAL.PageComments objPageCom = new BINROTA.DAL.PageComments(); objPageCom.Load(PageCommentID); objPageCom.Status = Status; objPageCom.Save(); }
public static void PageCommentUpdate(int PageCommentID, string Comment, int Point) { BINROTA.DAL.PageComments objPageCom = new BINROTA.DAL.PageComments(); objPageCom.Load(PageCommentID); objPageCom.Comment = Comment; objPageCom.Point = Point; objPageCom.Save(); }
public static void PageCommnetInsert(int MemberID, int PageID, string Comment, int Point, int Status) { BINROTA.DAL.PageComments objPageCom = new BINROTA.DAL.PageComments(); objPageCom.MemberID = MemberID; objPageCom.PageID = PageID; objPageCom.Comment = Comment; objPageCom.Point = Point; objPageCom.Status = Status; objPageCom.Save(); }