public Int64 Update(newsupdate objnewsupdate) { Int64 result = 0; try { Cls_newsupdate_db objCls_newsupdate_db = new Cls_newsupdate_db(); result = Convert.ToInt64(objCls_newsupdate_db.Update(objnewsupdate)); return(result); } catch (Exception ex) { ErrHandler.writeError(ex.Message, ex.StackTrace); return(result); } }
public newsupdate SelectById(Int64 newsupdateid) { newsupdate objnewsupdate = new newsupdate(); try { Cls_newsupdate_db objCls_newsupdate_db = new Cls_newsupdate_db(); objnewsupdate = objCls_newsupdate_db.SelectById(newsupdateid); return(objnewsupdate); } catch (Exception ex) { ErrHandler.writeError(ex.Message, ex.StackTrace); return(objnewsupdate); } }