public string UpdateProductGroupLevel1(PRO_tblProductGroupLevel1DTO item)
        {
            string strError = "";
            strError = db.sExecuteSQL("PRO_spfrmProductGroupLevel1", new string[] { "Activity", "Username", "LanguageID", "Level1ID", "Level1Code", "Level1ShortCode", "VNName", "ENName", "Rank", "Used", "Note", "Description" }, new object[] { item.Activity, item.Username, item.LanguageID, item.Level1ID, item.Level1Code, item.Level1ShortCode, item.VNName, item.ENName, item.Rank, item.Used, item.Note, item.Description });

            if (strError.Equals(""))
            {
                strError = this.InsertActionLog(new DTO.System.SYS_tblActionLogDTO
                {
                    Activity = "Insert",
                    Username = item.Username,
                    LanguageID = item.LanguageID,
                    ActionVN = "Cập Nhật",
                    ActionEN = "Update",
                    FunctionID = "20",
                    DescriptionVN = string.Format("Tài khoản '{0}' vừa cập nhật thành công ngành hàng có mã '{1}'.", item.Username, item.Level1Code),
                    DescriptionEN = string.Format("Account '{0}' has updated product sector successfully with sector code is '{1}'.", item.Username, item.Level1Code)
                });
            }

            return strError;
        }
 public string UpdateProductGroupLevel1(PRO_tblProductGroupLevel1DTO item)
 {
     return daoLevel1.UpdateProductGroupLevel1(item);
 }
 public string InsertProductGroupLevel1(PRO_tblProductGroupLevel1DTO item)
 {
     return daoLevel1.InsertProductGroupLevel1(item);
 }