private void AddList(object s, RoutedEventArgs e) { //MessageBox.Show(_listController._GetAllList().ToString()); //MessageBox.Show(_ListId.ToString()); if (ListDescription.Text.Trim() != "" && ListName.Text.Trim() != "") { if (_ListId != 0) { var updateDataList = new Datalist { DatalistId = _ListId, Name = ListName.Text, Description = ListDescription.Text }; //_listController._GetAllList(); //MessageBox.Show("Data has Successfuly Updated"); //MessageBox.Show(_listController.UpdateList_Class(updateDataList)); // Update Data by Manual } else { //MessageBox.Show(_listController.GetAllList().ToString()); //MessageBox.Show(_listController.AddList_Class(Newlist)); // Add Data by Binding MessageBox.Show(_listController.AddList(Newlist)); } this.Close(); } else { MessageBox.Show("Please Fill Up All Boxes!"); } }