public void Delete() { //BLEmployee ble = new BLEmployee(); ble.CreateEmpTable(); ble.DeleteEmpTable(); // Task.Delay(100); }
private void btn_CreateTableCassandra_Click(object sender, EventArgs e) { Stopwatch stopwatch = Stopwatch.StartNew(); BLEmployee ble = new BLEmployee(); ble.CreateEmpTable(); stopwatch.Stop(); lbl_CreateCassandraTable.Text = stopwatch.ElapsedMilliseconds.ToString(); MessageBox.Show("Tabela Employee.emp a fost creata"); }