예제 #1
0
 public int Insert()
 {
     int nResult = 0;
     cProductAndFile objInfor = new cProductAndFile();
     try
     {
         objInfor.AddNew();
         this.MappingData(objInfor);
         objInfor.Save();
         nResult = objInfor.ProductFileUploadID ;
     }
     catch
     {
         nResult = 0;
     }
     return nResult;
 }
예제 #2
0
 public int DeleteById(int ID)
 {
     int nResult = 0;
     cProductAndFile objDAL = new cProductAndFile();
     try
     {
         objDAL.LoadByPrimaryKey(ID);
         objDAL.MarkAsDeleted();
         objDAL.Save();
         nResult = ID;
     }
     catch
     {
         nResult = 0;
     }
     return nResult;
 }
예제 #3
0
 public int Update(int ID)
 {
     int nResult = 0;
     cProductAndFile objInfor = new cProductAndFile();
     try
     {
         objInfor.LoadByPrimaryKey(ID);
         this.MappingData(objInfor);
         objInfor.Save();
         nResult = ID;
     }
     catch
     {
         nResult = 0;
     }
     return nResult;
 }
예제 #4
0
 public DataTable SearchProductFile(int ProductID)
 {
     DataTable tbResult = new DataTable();
     cProductAndFile objDAL = new cProductAndFile();
     tbResult = objDAL.SearchProductFile(ProductID);
     return tbResult;
 }
예제 #5
0
 public void LoadById(int ID)
 {
     cProductAndFile objDAL = new cProductAndFile();
     objDAL.LoadByPrimaryKey(ID);
     ConvertData(objDAL);
 }
예제 #6
0
 private void MappingData(cProductAndFile objInfor)
 {
     try { objInfor.ProductFileID = Data.ProductFileID; }
     catch { objInfor.ProductFileID = 0; }
     try { objInfor.ProductID = Data.ProductID; }
     catch { objInfor.ProductID = 0; }
 }
예제 #7
0
 private void ConvertData(cProductAndFile objInfor)
 {
     try { Data.ProductFileID = objInfor.ProductFileID; }
     catch { Data.ProductFileID = 0; }
     try { Data.ProductID = objInfor.ProductID; }
     catch { Data.ProductID = 0; }
 }