Пример #1
0
 private void TileSaveSite_Click(object sender, EventArgs e)
 {
     try
     {
         if (MetroMessageBox.Show(this, "Are you sure to save this Site?", "Save Site", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
         {
             GeneralInfoModel.SiteName        = txtSiteName.Text;
             GeneralInfoModel.Country         = txtCountry.Text;
             GeneralInfoModel.PlantCode       = txtPlantCode.Text;
             GeneralInfoModel.SLOC            = txtSLOC.Text;
             GeneralInfoModel.CityCode        = txtCityCode.Text;
             GeneralInfoModel.PartnerNumber   = txtPartnerNumber.Text;
             GeneralInfoModel.CompleteAddress = txtCompleteAddress.Text;
             GeneralInfoModel.GLNILN          = txtGLNILN.Text;
             GeneralInfoModel.ServerHostURL   = txtServerHost.Text;
             GeneralInfoModel.AS2ID           = txtAS2ID.Text;
             GeneralInfoModel.SSLCertificate  = checkSSLCertificate.Checked;
             GeneralInfoController.GeneralInfoInsert();
             GeneralInfoController.GeneralInfoLoad(form1);
             Close();
         }
     }
     catch (Exception ex)
     {
         MetroMessageBox.Show(this, ex.Message, "Error Message");
     }
 }
Пример #2
0
 private void TileDeleteSite_Click(object sender, EventArgs e)
 {
     if (MetroMessageBox.Show(this, "Are you sure to delete this Site?", "Delete Site", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
     {
         GeneralInfoModel.SiteName = txtSiteName.Text;
         GeneralInfoController.GeneralInfoDelete();
         GeneralInfoController.GeneralInfoLoad(form1);
         Close();
     }
 }
Пример #3
0
 private void TileEditSite_Click(object sender, EventArgs e)
 {
     if (TileEditSite.Text == "Save")
     {
         if (MetroMessageBox.Show(this, "Are you sure to edit this Site?", "Edit Site", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
         {
             GeneralInfoModel.SiteName        = txtSiteName.Text;
             GeneralInfoModel.Country         = txtCountry.Text;
             GeneralInfoModel.PlantCode       = txtPlantCode.Text;
             GeneralInfoModel.SLOC            = txtSLOC.Text;
             GeneralInfoModel.CityCode        = txtCityCode.Text;
             GeneralInfoModel.PartnerNumber   = txtPartnerNumber.Text;
             GeneralInfoModel.CompleteAddress = txtCompleteAddress.Text;
             GeneralInfoModel.GLNILN          = txtGLNILN.Text;
             GeneralInfoModel.ServerHostURL   = txtServerHost.Text;
             GeneralInfoModel.AS2ID           = txtAS2ID.Text;
             GeneralInfoModel.SSLCertificate  = checkSSLCertificate.Checked;
             GeneralInfoController.GeneralInfoUpdate();
             GeneralInfoController.GeneralInfoLoad(form1);
             Close();
         }
     }
     else
     {
         txtCountry.ReadOnly         = false;
         txtPlantCode.ReadOnly       = false;
         txtSLOC.ReadOnly            = false;
         txtCityCode.ReadOnly        = false;
         txtPartnerNumber.ReadOnly   = false;
         txtCompleteAddress.ReadOnly = false;
         txtGLNILN.ReadOnly          = false;
         txtServerHost.ReadOnly      = false;
         txtAS2ID.ReadOnly           = false;
         checkSSLCertificate.Enabled = true;
         TileDeleteSite.Enabled      = false;
         TileEditSite.Text           = "Save";
         TileCancelSite.Text         = "Cancel";
     }
 }
Пример #4
0
 private void Form1_Load(object sender, EventArgs e)
 {
     GeneralInfoController.GeneralInfoLoad(this);
 }