private void LoadDataKaryawan()
        {
            cmbKaryawan.Items.Add("--- Pilih karyawan ---");

            FillDataHelper.FillKaryawan(cmbKaryawan, _listOfKaryawan, false);
            cmbKaryawan.SelectedIndex = 0;
        }
        private void LoadCustomer()
        {
            ICustomerBll bll = new CustomerBll(_log);

            _listOfCustomer = bll.GetAll();

            FillDataHelper.FillCustomer(chkListBox, _listOfCustomer);
        }
Exemplo n.º 3
0
        private void LoadKaryawan(string name)
        {
            IKaryawanBll bll = new KaryawanBll(_log);

            _listOfKaryawan = bll.GetByName(name);

            FillDataHelper.FillKaryawan(chkListBox, _listOfKaryawan);
        }
Exemplo n.º 4
0
        private void LoadKaryawan()
        {
            IKaryawanBll bll = new KaryawanBll(_log);

            _listOfKaryawan = bll.GetAll();

            FillDataHelper.FillKaryawan(chkListBox, _listOfKaryawan);
        }
Exemplo n.º 5
0
        private void LoadSupplier()
        {
            ISupplierBll bll = new SupplierBll(_log);

            _listOfSupplier = bll.GetAll();

            FillDataHelper.FillSupplier(chkListBox, _listOfSupplier);
        }
Exemplo n.º 6
0
        private void LoadAlasanPenyesuaianStok()
        {
            IAlasanPenyesuaianStokBll bll = new AlasanPenyesuaianStokBll(_log);

            _listOfAlasanPenyesuaianStok = bll.GetAll();

            FillDataHelper.FillAlasanPenyesuaianStok(chkListBox, _listOfAlasanPenyesuaianStok);
        }
        private void LoadCustomer(string name)
        {
            ICustomerBll bll = new CustomerBll(_log);

            _listOfCustomer = bll.GetByName(name);

            FillDataHelper.FillCustomer(chkListBox, _listOfCustomer);
        }
Exemplo n.º 8
0
        private void LoadGolongan(string name)
        {
            IGolonganBll bll = new GolonganBll(_log);

            _listOfGolongan = bll.GetByName(name);

            FillDataHelper.FillGolongan(chkListBox, _listOfGolongan);
        }
Exemplo n.º 9
0
        private void LoadGolongan()
        {
            IGolonganBll bll = new GolonganBll(_log);

            _listOfGolongan = bll.GetAll();

            FillDataHelper.FillGolongan(chkListBox, _listOfGolongan);
        }
Exemplo n.º 10
0
        private void LoadJenisPengeluaranBiaya()
        {
            IJenisPengeluaranBll bll = new JenisPengeluaranBll(_log);

            _listOfJenisPengeluaranBiaya = bll.GetAll();

            FillDataHelper.FillJenisPengeluaranBiaya(chkListBox, _listOfJenisPengeluaranBiaya);
        }
Exemplo n.º 11
0
        private void LoadSupplier(string name)
        {
            ISupplierBll bll = new SupplierBll(_log);

            _listOfSupplier = bll.GetByName(name);

            FillDataHelper.FillSupplier(chkListBox, _listOfSupplier);
        }
Exemplo n.º 12
0
        private void LoadGolongan()
        {
            IGolonganBll bll = new GolonganBll(_log);

            _listOfGolongan = bll.GetAll();

            FillDataHelper.FillGolongan(cmbGolongan, _listOfGolongan);

            if (_listOfGolongan.Count > 0)
            {
                cmbGolongan.SelectedIndex = 0;
            }
            else
            {
                rdoStokBerdasarkanGolongan.Enabled = false;
            }
        }
Exemplo n.º 13
0
        private void LoadSupplier()
        {
            ISupplierBll bll = new SupplierBll(_log);

            _listOfSupplier = bll.GetAll();

            FillDataHelper.FillSupplier(cmbSupplier, _listOfSupplier);

            if (_listOfSupplier.Count > 0)
            {
                cmbSupplier.SelectedIndex = 0;
            }
            else
            {
                rdoStokBerdasarkanSupplier.Enabled = false;
            }
        }
 private void LoadBulanDanTahun()
 {
     FillDataHelper.FillBulan(cmbBulan, true);
     FillDataHelper.FillTahun(cmbTahun, true);
 }