public int Insert() { int nResult = 0; cProductFile objInfor = new cProductFile(); try { objInfor.AddNew(); this.MappingData(objInfor); objInfor.Save(); nResult = objInfor.ProductFileID ; } catch { nResult = 0; } return nResult; }
public int DeleteById(int ID) { int nResult = 0; cProductFile objDAL = new cProductFile(); try { objDAL.LoadByPrimaryKey(ID); objDAL.MarkAsDeleted(); objDAL.Save(); nResult = ID; } catch { nResult = 0; } return nResult; }
public DataTable SearchByIDProduct(int ProductID, int PageIndex, int PageSize, ref int PageCount) { DataTable tbResult = new DataTable(); cProductFile objDAL = new cProductFile(); tbResult = objDAL.SearchByIDProduct(ProductID, PageIndex, PageSize, ref PageCount); return tbResult; }
public DataTable SearchAll() { DataTable tbResult = new DataTable(); cProductFile objDAL = new cProductFile(); tbResult = objDAL.SearchAll(); return tbResult; }
public void LoadById(int ID) { cProductFile objDAL = new cProductFile(); objDAL.LoadByPrimaryKey(ID); ConvertData(objDAL); }
private void MappingData(cProductFile objInfor) { try { objInfor.FileName = Data.FileName; } catch { objInfor.FileName = ""; } try { objInfor.Url = Data.Url; } catch { objInfor.Url = ""; } }
private void ConvertData(cProductFile objInfor) { try { Data.FileName = objInfor.FileName; } catch { Data.FileName = ""; } try { Data.Url = objInfor.Url; } catch { Data.Url = ""; } }
public int Update(int ID) { int nResult = 0; cProductFile objInfor = new cProductFile(); try { objInfor.LoadByPrimaryKey(ID); this.MappingData(objInfor); objInfor.Save(); nResult = ID; } catch { nResult = 0; } return nResult; }