Ejemplo n.º 1
0
 public int Insert()
 {
     int nResult = 0;
     var objInfor = new cConfig();
     try
     {
         objInfor.AddNew();
         this.MappingData(objInfor);
         objInfor.Save();
         nResult = 1;
     }
     catch
     {
         nResult = 0;
     }
     return nResult;
 }
Ejemplo n.º 2
0
 public int DeleteById(int ID)
 {
     int nResult = 0;
     var objDal = new cConfig();
     try
     {
         objDal.LoadByPrimaryKey(ID);
         objDal.MarkAsDeleted();
         objDal.Save();
         nResult = ID;
     }
     catch
     {
         nResult = 0;
     }
     return nResult;
 }
Ejemplo n.º 3
0
 public int Update(int ID)
 {
     int nResult = 0;
     var objInfor = new cConfig();
     try
     {
         objInfor.LoadByPrimaryKey(ID);
         this.MappingData(objInfor);
         objInfor.Save();
         nResult = ID;
     }
     catch
     {
         nResult = 0;
     }
     return nResult;
 }
Ejemplo n.º 4
0
 public DataTable SearchBySiteName(string siteName)
 {
     var objDAL = new cConfig();
     DataTable tbResult = objDAL.SearchBySiteName(siteName);
     return tbResult;
 }
Ejemplo n.º 5
0
 public void LoadById(int ID)
 {
     var objDAL = new cConfig();
     objDAL.LoadByPrimaryKey(ID);
     ConvertData(objDAL);
 }
Ejemplo n.º 6
0
        private void MappingData(cConfig objInfor)
        {
            objInfor.ID = Data.ID;
            objInfor.SiteName = Data.SiteName;

            objInfor.Name = Data.Name;
            objInfor.Content = Data.Content;
            objInfor.Description = Data.Description;
            objInfor.IsActive = Data.IsActive;
        }
Ejemplo n.º 7
0
        private void ConvertData(cConfig objInfor)
        {
            Data.ID = objInfor.ID;
            Data.SiteName = objInfor.SiteName;

            Data.Name = objInfor.Name;
            Data.Content = objInfor.Content;
            Data.Description = objInfor.Description;
            Data.IsActive = objInfor.IsActive;
        }