예제 #1
0
 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;
 }
예제 #2
0
 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;
 }
예제 #3
0
 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;
 }
예제 #4
0
 public DataTable SearchAll()
 {
     DataTable tbResult = new DataTable();
     cProductFile objDAL = new cProductFile();
     tbResult = objDAL.SearchAll();
     return tbResult;
 }
예제 #5
0
 public void LoadById(int ID)
 {
     cProductFile objDAL = new cProductFile();
     objDAL.LoadByPrimaryKey(ID);
     ConvertData(objDAL);
 }
예제 #6
0
 private void MappingData(cProductFile objInfor)
 {
     try { objInfor.FileName = Data.FileName; }
     catch { objInfor.FileName = ""; }
     try { objInfor.Url = Data.Url; }
     catch { objInfor.Url = ""; }
 }
예제 #7
0
 private void ConvertData(cProductFile objInfor)
 {
     try { Data.FileName = objInfor.FileName; }
     catch { Data.FileName = ""; }
     try { Data.Url = objInfor.Url; }
     catch { Data.Url = ""; }
 }
예제 #8
0
 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;
 }