Exemplo n.º 1
0
 public int Insert()
 {
     int nResult = 0;
     cAdvPosition objInfor = new cAdvPosition();
     try
     {
         objInfor.AddNew();
         this.MappingData(objInfor);
         objInfor.Save();
         nResult = 1;
     }
     catch
     {
         nResult = 0;
     }
     return nResult;
 }
Exemplo n.º 2
0
 public int DeleteById(int ID)
 {
     int nResult = 0;
     cAdvPosition objDAL = new cAdvPosition();
     try
     {
         objDAL.LoadByPrimaryKey(ID);
         objDAL.MarkAsDeleted();
         objDAL.Save();
         nResult = ID;
     }
     catch
     {
         nResult = 0;
     }
     return nResult;
 }
Exemplo n.º 3
0
 public int Update(int ID)
 {
     int nResult = 0;
     cAdvPosition objInfor = new cAdvPosition();
     try
     {
         objInfor.LoadByPrimaryKey(ID);
         this.MappingData(objInfor);
         objInfor.Save();
         nResult = ID;
     }
     catch
     {
         nResult = 0;
     }
     return nResult;
 }
Exemplo n.º 4
0
 public DataTable Search()
 {
     DataTable tbResult = new DataTable();
     cAdvPosition objDAL = new cAdvPosition();
     tbResult = objDAL.Search();
     return tbResult;
 }
Exemplo n.º 5
0
 public void LoadById(int ID)
 {
     cAdvPosition objDAL = new cAdvPosition();
     objDAL.LoadByPrimaryKey(ID);
     ConvertData(objDAL);
 }
Exemplo n.º 6
0
 private void MappingData(cAdvPosition objInfor)
 {
     objInfor.Description = Data.Description;
 }
Exemplo n.º 7
0
 private void ConvertData(cAdvPosition objInfor)
 {
     Data.Description = objInfor.Description;
 }