public View_BagiShuAnggota() { InitializeComponent(); _dataKoperasiServices = new DataKoperasiServices(); _bagiShuServices = new BagiShuServices(); _windowBagiShuAnggota = new Window_BagiShuAnggota(new BagiShuDto()); }
private void HitungShu_Click(object sender, RoutedEventArgs e) { try { if (!string.IsNullOrEmpty(Tahun.Text) && !string.IsNullOrEmpty(IdAnggota.Text)) { int intTahun = Convert.ToInt32(Tahun.Text); var Data = _bagiShuServices.HitungShuAnggota(intTahun, IdAnggota.Text); _windowBagiShuAnggota = new Window_BagiShuAnggota(Data); _windowBagiShuAnggota.WindowStartupLocation = System.Windows.WindowStartupLocation.CenterScreen; _windowBagiShuAnggota.Show(); } } catch (Exception ex) { LogError.WriteError(ex); System.Windows.MessageBox.Show("Error!! \n telah terjadi kesalahan, Hubungi administrator", "Error", MessageBoxButton.OK, MessageBoxImage.Error); } }