Ejemplo n.º 1
0
        protected override void Edit()
        {
            HPS.BLL.AnnouncementTimeBLL.BLLAnnouncementTime_TFactory AnnouncementTimeFactory = new HPS.BLL.AnnouncementTimeBLL.BLLAnnouncementTime_TFactory();
            try
            {
                HPS.BLL.AnnouncementTimeBLL.BLLAnnouncementTime_T AnnouncementTimeEntity = new HPS.BLL.AnnouncementTimeBLL.BLLAnnouncementTime_T();
                AnnouncementTimeEntity.AnnouncementTime_nvc = Hepsa.Core.Common.PersentationController.GetEntityValue(AnnouncementTime_nvcTextBox.Text, TypeCode.String).ToString();
                AnnouncementTimeEntity.StartTime_nvc        = Convert.ToString(Hepsa.Core.Common.PersentationController.GetMaskedTextBoxValue(StartTime_nvcTextBox));
                AnnouncementTimeEntity.EndTime_nvc          = Convert.ToString(Hepsa.Core.Common.PersentationController.GetMaskedTextBoxValue(EndTime_nvcTextBox));

                if (Hepsa.Core.Common.MessageBox.ConfirmMessage(HPS.Exceptions.ExceptionCs.EditMessage) == true)
                {
                    AnnouncementTimeFactory.BeginProc();
                    AnnouncementTimeFactory.Update(AnnouncementTimeEntity, (HPS.BLL.AnnouncementTimeBLL.BLLAnnouncementTime_TKeys)Key);
                    AnnouncementTimeFactory.CommitProc();
                    if (DataTable != null)
                    {
                        DataRow[] dr = DataTable.Select(HPS.BLL.AnnouncementTimeBLL.BLLAnnouncementTime_T.AnnouncementTime_TField.AnnouncementTimeID_int.ToString() + "='" + ((HPS.BLL.AnnouncementTimeBLL.BLLAnnouncementTime_TKeys)Key).AnnouncementTimeID_int.ToString() + "'");
                        if (dr.Length > 0)
                        {
                            dr[0][HPS.BLL.AnnouncementTimeBLL.BLLAnnouncementTime_T.AnnouncementTime_TField.AnnouncementTime_nvc.ToString()] = Hepsa.Core.Common.PersentationController.GetEntityValueInDatabaseFormat(AnnouncementTimeEntity.AnnouncementTime_nvc, TypeCode.String);
                            dr[0][HPS.BLL.AnnouncementTimeBLL.BLLAnnouncementTime_T.AnnouncementTime_TField.StartTime_nvc.ToString()]        = Hepsa.Core.Common.PersentationController.GetEntityValueInDatabaseFormat(AnnouncementTimeEntity.StartTime_nvc, TypeCode.String);
                            dr[0][HPS.BLL.AnnouncementTimeBLL.BLLAnnouncementTime_T.AnnouncementTime_TField.EndTime_nvc.ToString()]          = Hepsa.Core.Common.PersentationController.GetEntityValueInDatabaseFormat(AnnouncementTimeEntity.EndTime_nvc, TypeCode.String);
                        }
                        DataTable.AcceptChanges();
                    }
                }
            }
            catch (Exception ex)
            {
                AnnouncementTimeFactory.RollBackProc();
                throw ex;
            }
        }
Ejemplo n.º 2
0
        private void DeleteButton_Click(object sender, EventArgs e)
        {
            HPS.BLL.AnnouncementTimeBLL.BLLAnnouncementTime_TFactory AnnouncementTimeFactory = new HPS.BLL.AnnouncementTimeBLL.BLLAnnouncementTime_TFactory();

            try
            {
                if (Hepsa.Core.Common.MessageBox.ConfirmDeleteMessage() == false)
                {
                    return;
                }


                HPS.BLL.AnnouncementTimeBLL.BLLAnnouncementTime_TFactory AnnouncementTime_TFactory = new HPS.BLL.AnnouncementTimeBLL.BLLAnnouncementTime_TFactory();
                HPS.BLL.AnnouncementTimeBLL.BLLAnnouncementTime_TKeys    AnnouncementTimeKey       = new HPS.BLL.AnnouncementTimeBLL.BLLAnnouncementTime_TKeys();

                AnnouncementTimeKey.AnnouncementTimeID_int = (Int32?)AnnouncementTimeGridView.CurrentRow.Cells["colAnnouncementTimeID_int"].Value;
                AnnouncementTimeFactory.Delete(AnnouncementTimeKey);

                DataRow[] dr = ((DataTable)this.AnnouncementTimeGridView.DataSource).Select(HPS.BLL.AnnouncementTimeBLL.BLLAnnouncementTime_T.AnnouncementTime_TField.AnnouncementTimeID_int.ToString() + "='" + AnnouncementTimeKey.AnnouncementTimeID_int.ToString() + "'");
                if (dr.Length > 0)
                {
                    dr[0].Delete();
                }
                ((DataTable)this.AnnouncementTimeGridView.DataSource).AcceptChanges();
            }

            catch (Exception ex)
            {
                Hepsa.Core.Common.MessageBox.ErrorMessage(ex.Message);
            }
        }
Ejemplo n.º 3
0
        protected override void Insert()
        {
            HPS.BLL.AnnouncementTimeBLL.BLLAnnouncementTime_TFactory AnnouncementTimeFactory = new HPS.BLL.AnnouncementTimeBLL.BLLAnnouncementTime_TFactory();
            try
            {
                HPS.BLL.AnnouncementTimeBLL.BLLAnnouncementTime_T AnnouncementTimeEntity = new HPS.BLL.AnnouncementTimeBLL.BLLAnnouncementTime_T();
                AnnouncementTimeEntity.AnnouncementTime_nvc = Hepsa.Core.Common.PersentationController.GetEntityValue(AnnouncementTime_nvcTextBox.Text, TypeCode.String).ToString();
                AnnouncementTimeEntity.StartTime_nvc        = Hepsa.Core.Common.PersentationController.GetMaskedTextBoxValue(StartTime_nvcTextBox).ToString();
                AnnouncementTimeEntity.EndTime_nvc          = Hepsa.Core.Common.PersentationController.GetMaskedTextBoxValue(EndTime_nvcTextBox).ToString();

                AnnouncementTimeFactory.BeginProc();
                AnnouncementTimeFactory.Insert(AnnouncementTimeEntity);
                AnnouncementTimeFactory.CommitProc();
                if (DataTable != null)
                {
                    DataRow dr = this.DataTable.NewRow();
                    dr[HPS.BLL.AnnouncementTimeBLL.BLLAnnouncementTime_T.AnnouncementTime_TField.AnnouncementTimeID_int.ToString()] = Hepsa.Core.Common.PersentationController.GetEntityValueInDatabaseFormat(AnnouncementTimeEntity.AnnouncementTimeID_int, TypeCode.Int32);
                    dr[HPS.BLL.AnnouncementTimeBLL.BLLAnnouncementTime_T.AnnouncementTime_TField.AnnouncementTime_nvc.ToString()]   = Hepsa.Core.Common.PersentationController.GetEntityValueInDatabaseFormat(AnnouncementTimeEntity.AnnouncementTime_nvc, TypeCode.String);
                    dr[HPS.BLL.AnnouncementTimeBLL.BLLAnnouncementTime_T.AnnouncementTime_TField.StartTime_nvc.ToString()]          = Hepsa.Core.Common.PersentationController.GetEntityValueInDatabaseFormat(AnnouncementTimeEntity.StartTime_nvc, TypeCode.String);
                    dr[HPS.BLL.AnnouncementTimeBLL.BLLAnnouncementTime_T.AnnouncementTime_TField.EndTime_nvc.ToString()]            = Hepsa.Core.Common.PersentationController.GetEntityValueInDatabaseFormat(AnnouncementTimeEntity.EndTime_nvc, TypeCode.String);

                    DataTable.Rows.Add(dr);
                    DataTable.AcceptChanges();
                }
                this.ClearForm(this);
            }
            catch (Exception ex)
            {
                AnnouncementTimeFactory.RollBackProc();
                throw ex;
            }
        }
Ejemplo n.º 4
0
        protected override void Delete()
        {
            HPS.BLL.AnnouncementTimeBLL.BLLAnnouncementTime_TFactory AnnouncementTimeFactory = new HPS.BLL.AnnouncementTimeBLL.BLLAnnouncementTime_TFactory();

            try
            {
                if (Hepsa.Core.Common.MessageBox.ConfirmMessage(HPS.Exceptions.ExceptionCs.DeleteMessage) == true)
                {
                    AnnouncementTimeFactory.BeginProc();
                    AnnouncementTimeFactory.Delete((HPS.BLL.AnnouncementTimeBLL.BLLAnnouncementTime_TKeys)Key);
                    AnnouncementTimeFactory.CommitProc();
                    if (DataTable != null)
                    {
                        DataRow[] dr = DataTable.Select(HPS.BLL.AnnouncementTimeBLL.BLLAnnouncementTime_T.AnnouncementTime_TField.AnnouncementTimeID_int.ToString() + "='" + ((HPS.BLL.AnnouncementTimeBLL.BLLAnnouncementTime_TKeys)Key).AnnouncementTimeID_int.ToString() + "'");
                        if (dr.Length > 0)
                        {
                            dr[0].Delete();
                        }
                        DataTable.AcceptChanges();
                    }
                    this.Close();
                }
            }
            catch (Exception ex)
            {
                AnnouncementTimeFactory.RollBackProc();
                throw ex;
            }
        }
Ejemplo n.º 5
0
 protected override void ShowForm()
 {
     this.FillCombo();
     HPS.BLL.AnnouncementTimeBLL.BLLAnnouncementTime_TFactory AnnouncementTimeFactory = new HPS.BLL.AnnouncementTimeBLL.BLLAnnouncementTime_TFactory();
     HPS.BLL.AnnouncementTimeBLL.BLLAnnouncementTime_T        AnnouncementTimeEntity  = AnnouncementTimeFactory.GetBy((HPS.BLL.AnnouncementTimeBLL.BLLAnnouncementTime_TKeys)Key);
     if (AnnouncementTimeEntity == null)
     {
         throw new HPS.Exceptions.AnnouncementTimeNotFound();
     }
     AnnouncementTime_nvcTextBox.Text = Hepsa.Core.Common.PersentationController.GetEntityValue(AnnouncementTimeEntity.AnnouncementTime_nvc, TypeCode.String).ToString();
     StartTime_nvcTextBox.Text        = Hepsa.Core.Common.PersentationController.GetEntityValue(AnnouncementTimeEntity.StartTime_nvc, TypeCode.String).ToString();
     EndTime_nvcTextBox.Text          = Hepsa.Core.Common.PersentationController.GetEntityValue(AnnouncementTimeEntity.EndTime_nvc, TypeCode.String).ToString();
 }
Ejemplo n.º 6
0
 private void LoadAnnouncementTime()
 {
     try
     {
         HPS.BLL.AnnouncementTimeBLL.BLLAnnouncementTime_TFactory AnnouncementTimeFactory = new HPS.BLL.AnnouncementTimeBLL.BLLAnnouncementTime_TFactory();
         DataTable AnnouncementTimeDataTable = new DataTable();
         AnnouncementTimeFactory.GetAll(ref AnnouncementTimeDataTable);
         this.AnnouncementTimeGridView.DataSource = AnnouncementTimeDataTable;
     }
     catch (System.Exception ex)
     {
         throw ex;
     }
 }
Ejemplo n.º 7
0
        private void FillCombo()
        {
            try
            {
                HPS.BLL.AnnouncementTimeBLL.BLLAnnouncementTime_TFactory AnnouncementTimeID_intFactory = new HPS.BLL.AnnouncementTimeBLL.BLLAnnouncementTime_TFactory();
                DataTable AnnouncementTimeID_intDataTable = new DataTable();
                AnnouncementTimeID_intFactory.GetAll(ref AnnouncementTimeID_intDataTable);
                this.AnnouncementTimeID_intComboBox.DisplayMember = HPS.BLL.AnnouncementTimeBLL.BLLAnnouncementTime_T.AnnouncementTime_TField.AnnouncementTime_nvc.ToString();
                this.AnnouncementTimeID_intComboBox.ValueMember   = HPS.BLL.AnnouncementTimeBLL.BLLAnnouncementTime_T.AnnouncementTime_TField.AnnouncementTimeID_int.ToString();
                this.AnnouncementTimeID_intComboBox.DataSource    = AnnouncementTimeID_intDataTable;
                this.AnnouncementTimeID_intComboBox.SelectedIndex = -1;

                HPS.BLL.CityBLL.BLLCity_TFactory CityID_intFactory = new HPS.BLL.CityBLL.BLLCity_TFactory();
                DataTable CityID_intDataTable = new DataTable();
                CityID_intFactory.GetAll(ref CityID_intDataTable);
                this.CityID_intComboBox.DisplayMember = HPS.BLL.CityBLL.BLLCity_T.City_TField.City_nvc.ToString();
                this.CityID_intComboBox.ValueMember   = HPS.BLL.CityBLL.BLLCity_T.City_TField.CityID_int.ToString();
                this.CityID_intComboBox.DataSource    = CityID_intDataTable;
                this.CityID_intComboBox.SelectedIndex = -1;

                HPS.BLL.GoodBLL.BLLGood_TFactory GoodID_intFactory = new HPS.BLL.GoodBLL.BLLGood_TFactory();
                DataTable GoodID_intDataTable = new DataTable();
                GoodID_intFactory.GetAll(ref GoodID_intDataTable);
                this.GoodID_intComboBox.DisplayMember = HPS.BLL.GoodBLL.BLLGood_T.Good_TField.Good_nvc.ToString();
                this.GoodID_intComboBox.ValueMember   = HPS.BLL.GoodBLL.BLLGood_T.Good_TField.GoodID_int.ToString();
                this.GoodID_intComboBox.DataSource    = GoodID_intDataTable;
                this.GoodID_intComboBox.SelectedIndex = -1;

                HPS.BLL.BoxingBLL.BLLBoxing_TFactory BoxingID_intFactory = new HPS.BLL.BoxingBLL.BLLBoxing_TFactory();
                DataTable BoxingID_intDataTable = new DataTable();
                BoxingID_intFactory.GetAll(ref BoxingID_intDataTable);
                this.BoxingID_intComboBox.DisplayMember = HPS.BLL.BoxingBLL.BLLBoxing_T.Boxing_TField.BoxingType_nvc.ToString();
                this.BoxingID_intComboBox.ValueMember   = HPS.BLL.BoxingBLL.BLLBoxing_T.Boxing_TField.BoxingID_int.ToString();
                this.BoxingID_intComboBox.DataSource    = BoxingID_intDataTable;
                this.BoxingID_intComboBox.SelectedIndex = -1;

                HPS.BLL.PortPlacesBLL.BLLPortPlaces_TFactory PortPlaceID_intFactory = new HPS.BLL.PortPlacesBLL.BLLPortPlaces_TFactory();
                DataTable PortPlaceID_intDataTable = new DataTable();
                PortPlaceID_intFactory.GetAll(ref PortPlaceID_intDataTable);
                this.PortPlaceID_intComboBox.DisplayMember = HPS.BLL.PortPlacesBLL.BLLPortPlaces_T.PortPlaces_TField.PortPlaces_nvc.ToString();
                this.PortPlaceID_intComboBox.ValueMember   = HPS.BLL.PortPlacesBLL.BLLPortPlaces_T.PortPlaces_TField.PortPlacesID_int.ToString();
                this.PortPlaceID_intComboBox.DataSource    = PortPlaceID_intDataTable;
                this.PortPlaceID_intComboBox.SelectedIndex = -1;

                HPS.BLL.LaderTypeBLL.BLLLaderType_TFactory LaderTypeID_intFactory = new HPS.BLL.LaderTypeBLL.BLLLaderType_TFactory();
                DataTable LaderTypeID_intDataTable = new DataTable();
                LaderTypeID_intFactory.GetAll(ref LaderTypeID_intDataTable);
                this.LaderTypeID_intComboBox.DisplayMember = HPS.BLL.LaderTypeBLL.BLLLaderType_T.LaderType_TField.LaderType_nvc.ToString();
                this.LaderTypeID_intComboBox.ValueMember   = HPS.BLL.LaderTypeBLL.BLLLaderType_T.LaderType_TField.LaderTypeID_int.ToString();
                this.LaderTypeID_intComboBox.DataSource    = LaderTypeID_intDataTable;
                this.LaderTypeID_intComboBox.SelectedIndex = -1;

                HPS.BLL.CompanyBLL.BLLCompany_TFactory CompanyID_intFactory = new HPS.BLL.CompanyBLL.BLLCompany_TFactory();
                DataTable CompanyID_intDataTable = new DataTable();
                CompanyID_intFactory.GetAll(ref CompanyID_intDataTable);
                this.CompanyID_intComboBox.DisplayMember = HPS.BLL.CompanyBLL.BLLCompany_T.Company_TField.Company_nvc.ToString();
                this.CompanyID_intComboBox.ValueMember   = HPS.BLL.CompanyBLL.BLLCompany_T.Company_TField.CompanyID_int.ToString();
                this.CompanyID_intComboBox.DataSource    = CompanyID_intDataTable;
                this.CompanyID_intComboBox.SelectedIndex = -1;

                HPS.BLL.TrafficTypeBLL.BLLTrafficType_TFactory TrafficTypeID_intFactory = new HPS.BLL.TrafficTypeBLL.BLLTrafficType_TFactory();
                DataTable TrafficTypeID_intDataTable = new DataTable();
                TrafficTypeID_intFactory.GetAll(ref TrafficTypeID_intDataTable);
                this.TrafficTypeID_intComboBox.DisplayMember = HPS.BLL.TrafficTypeBLL.BLLTrafficType_T.TrafficType_TField.TrafficType_nvc.ToString();
                this.TrafficTypeID_intComboBox.ValueMember   = HPS.BLL.TrafficTypeBLL.BLLTrafficType_T.TrafficType_TField.TrafficTypeID_int.ToString();
                this.TrafficTypeID_intComboBox.DataSource    = TrafficTypeID_intDataTable;
                this.TrafficTypeID_intComboBox.SelectedIndex = -1;
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }