예제 #1
0
 public temp_Barber(Main_form m, MySqlConnection msc)
 {
     InitializeComponent();
     this.msc          = msc;
     this.m_form       = m;
     this.DialogResult = DialogResult.Cancel;
 }
예제 #2
0
 public customer_part(Main_form m, MySqlConnection msc, string account)
 {
     InitializeComponent();
     this.msc = msc;
     _account = account;
     m_form   = m;
     Console.WriteLine(_account);
 }
예제 #3
0
 //public Boolean _log_in = false;
 public temp_customer(Main_form m, MySqlConnection msc)
 {
     InitializeComponent();
     this.msc          = msc;
     log_in.Checked    = true;
     m_form            = m;
     this.DialogResult = DialogResult.Cancel;
     m_name.Text       = null;
 }
예제 #4
0
 public Barber_part(Main_form m, MySqlConnection msc)
 {
     InitializeComponent();
     m_form   = m;
     this.msc = msc;
     this.get_customer();
     this.get_history();
     this.get_barber();
 }
예제 #5
0
 public Barber_part(Main_form m)
 {
     InitializeComponent();
     m_form = m;
 }
예제 #6
0
 public customer_part(Main_form m)
 {
     InitializeComponent();
     log_in.Checked = true;
     m_form         = m;
 }