public HouseCounterServiceCounterAddChangeForm()
 {
     this.m_HouseCounterServiceCounter = HouseCounterServiceCounter.Null;
     this.InitializeComponent();
 }
 public HouseCounterServiceCounterAddChangeForm(HouseCounterServiceCounter houseCounterServiceCounter)
     : this()
 {
     this.m_HouseCounterServiceCounter = houseCounterServiceCounter;
 }
 private void tsbtnAdd_Click(object sender, System.EventArgs e)
 {
     if (System.Windows.Forms.Application.OpenForms.get_Item(0).GetType().ToString() == "AIS.SN.UI.Provider.ProviderMainForm")
     {
         string valueByName = Setting.GetValueByName("Работа с приборами учета", "Диапазон в который разрешено редактирование в Поставщике");
         if ((System.Convert.ToInt32(valueByName.Substring(0, valueByName.IndexOf('-'))) > System.DateTime.Now.get_Day()) || (System.Convert.ToInt32(valueByName.Substring((int) (valueByName.IndexOf('-') + 1), (int) ((valueByName.get_Length() - valueByName.IndexOf('-')) - 1))) < System.DateTime.Now.get_Day()))
         {
             System.Windows.Forms.MessageBox.Show(string.Concat((string[]) new string[] { "Вам разрешено редактирование данных только с ", valueByName.Substring(0, valueByName.IndexOf('-')), " по ", valueByName.Substring((int) (valueByName.IndexOf('-') + 1), (int) ((valueByName.get_Length() - valueByName.IndexOf('-')) - 1)), " числа месяца" }), "Редактирование запрещено", System.Windows.Forms.MessageBoxButtons.OK, System.Windows.Forms.MessageBoxIcon.Hand);
             return;
         }
     }
     HouseCounterServiceCounter houseCounterServiceCounter = new HouseCounterServiceCounter {
         HouseCounterId = this.m_HouseCounter.Id
     };
     HouseCounterServiceCounterAddChangeForm form = new HouseCounterServiceCounterAddChangeForm(houseCounterServiceCounter);
     if (form.ShowDialog(this) == System.Windows.Forms.DialogResult.Yes)
     {
         this.bsHouseCounterServiceCounters.Add(houseCounterServiceCounter);
     }
 }