protected void btnUpdate_Click(object sender, EventArgs e) { try { BLL.DataCenterBiz biz = new BLL.DataCenterBiz(); DTO.ConfigAssociation ent = new DTO.ConfigAssociation(); ent.ASSOCIATION_CODE = txtAssociationCode.Text; ent.ASSOCIATION_NAME = txtAssociationName.Text; ent.UPDATED_BY = base.UserId.ToString(); ent.UPDATED_DATE = DateTime.Now; ent.ACTIVE = "Y"; List <DTO.AssociationLicense> al = new List <DTO.AssociationLicense>(); var res = biz.InsertExamPlaceGroupR(ent, UserProfile, al); if (!res.IsError) { initGridAssociation(); UCSuccess.ShowMessageSuccess = SysMessage.SaveSucess; UCSuccess.ShowModalSuccess(); } else { UCError.ShowMessageError = res.ErrorMsg; UCError.ShowModalError(); } } catch (Exception ex) { UCError.ShowMessageError = ex.Message; UCError.ShowModalError(); } }
protected void btnSave_Click(object sender, EventArgs e) { try { if (txtAssociationCode.Text.Length == 3) { BLL.DataCenterBiz biz = new BLL.DataCenterBiz(); DTO.ConfigAssociation ent = new DTO.ConfigAssociation(); ent.ASSOCIATION_CODE = txtAssociationCode.Text.Trim(); ent.ASSOCIATION_NAME = txtAssociationName.Text.Trim(); if (ddlAgentType.SelectedValue != "") { ent.AGENT_TYPE = ddlAgentType.SelectedValue; } if (ddlCompType.SelectedValue != "") { ent.COMP_TYPE = ddlCompType.SelectedValue; } ent.ACTIVE = "Y"; List <DTO.AssociationLicense> al = new List <DTO.AssociationLicense>(); foreach (ListItem i in chkLicense.Items) { al.Add(new DTO.AssociationLicense { LICENSE_TYPE_CODE = i.Value, ACTIVE = i.Selected ? "Y" : "N" }); } var res = biz.InsertAssociation(ent, UserProfile, al); if (!res.IsError) { initGridAssociation(); UCSuccess.ShowMessageSuccess = SysMessage.SaveSucess; UCSuccess.ShowModalSuccess(); } else { UCError.ShowMessageError = res.ErrorMsg; UCError.ShowModalError(); mpeAssociation.Show(); UplPopUp.Update(); } } else { UCError.ShowMessageError = "รหัสสมาคมต้องมีจำนวน 3 หลักเท่านั้น"; UCError.ShowModalError(); } } catch (Exception ex) { UCError.ShowMessageError = ex.Message; UCError.ShowModalError(); mpeAssociation.Show(); UplPopUp.Update(); } //txtAssociationCode.Text = ""; //txtAssociationName.Text = ""; }
protected void btnSave_Click(object sender, EventArgs e) { try { if (!string.IsNullOrEmpty(txtAssociationCode.Text) && !string.IsNullOrEmpty(txtAssociationName.Text)) { if (txtAssociationCode.Text.Length == 3) { BLL.DataCenterBiz biz = new BLL.DataCenterBiz(); var checkid = biz.GetExamPlaceGroupRByCheckID(txtAssociationCode.Text, txtAssociationName.Text); List <DTO.AssociationLicense> al = new List <DTO.AssociationLicense>(); DTO.ConfigAssociation ent = new DTO.ConfigAssociation(); ent.ASSOCIATION_CODE = txtAssociationCode.Text; ent.ASSOCIATION_NAME = txtAssociationName.Text; ent.ACTIVE = "Y"; var res = biz.InsertExamPlaceGroupR(ent, UserProfile, al); if (!res.IsError) { initGridAssociation(); UCSuccess.ShowMessageSuccess = SysMessage.SaveSucess; UCSuccess.ShowModalSuccess(); } else { UCError.ShowMessageError = res.ErrorMsg; UCError.ShowModalError(); } } else { UCError.ShowMessageError = "รหัสหน่วยงานจัดสอบต้องมีจำนวน 3 ตัวอักษรเท่านั้น"; UCError.ShowModalError(); } } else { UCError.ShowMessageError = "กรุณากรอกข้อมูลสมาคมให้ครบถ้วน"; UCError.ShowModalError(); } } catch (Exception ex) { UCError.ShowMessageError = ex.Message; UCError.ShowModalError(); } txtAssociationCode.Text = ""; txtAssociationName.Text = ""; }
protected void functionDelete(string ID) { BLL.DataCenterBiz biz = new BLL.DataCenterBiz(); DTO.ConfigAssociation ent = new DTO.ConfigAssociation(); List <DTO.AssociationLicense> al = new List <DTO.AssociationLicense>(); ent.ASSOCIATION_CODE = ID; ent.ACTIVE = "N"; var res = biz.InsertExamPlaceGroupR(ent, UserProfile, al); //var res = biz.DeleteAsscoiation(ID); if (!res.IsError) { initGridAssociation(); UCSuccess.ShowMessageSuccess = SysMessage.DeleteSuccess; UCSuccess.ShowModalSuccess(); } else { UCError.ShowMessageError = res.ErrorMsg; UCError.ShowModalError(); } }
public DTO.ResponseMessage <bool> InsertExamPlaceGroupR(DTO.ConfigAssociation ent, DTO.UserProfile userProfile, List <DTO.AssociationLicense> license) { return(svc.InsertExamPlaceGroupR(ent, userProfile, license.ToArray())); }
public DTO.ResponseMessage <bool> UpdateAsscoiation(DTO.ConfigAssociation ent, DTO.UserProfile userProfile, List <DTO.AssociationLicense> license) { return(svc.UpdateAsscoiation(ent, userProfile, license.ToArray())); }