Example #1
0
 public FormUrunGuncelle(Product product, CurrentAccountContext db)
 {
     InitializeComponent();
     _product = product;
     txtAlisFiyati.KeyPress  += WinFormHelpers.OndalikliSayiyaIzinVer;
     txtSatisFiyati.KeyPress += WinFormHelpers.OndalikliSayiyaIzinVer;
     txtStok.KeyPress        += WinFormHelpers.TamSayiyaIzinVer;
 }
 public FormMusteriGuncelle(Customer customer, CurrentAccountContext db)
 {
     InitializeComponent();
     _customer            = customer;
     txtTelefon.KeyPress += WinFormHelpers.TamSayiyaIzinVer;
 }
 public FormCalisanGuncelle(Employee employee, CurrentAccountContext db)
 {
     InitializeComponent();
     _employee            = employee;
     txtTelefon.KeyPress += WinFormHelpers.TamSayiyaIzinVer;
 }
 public FormTedarikciGuncelle(Supplier supplier, CurrentAccountContext db)
 {
     InitializeComponent();
     _supplier            = supplier;
     txtTelefon.KeyPress += WinFormHelpers.TamSayiyaIzinVer;
 }
Example #5
0
 public FormKategoriGuncelle(Category category, CurrentAccountContext db)
 {
     InitializeComponent();
     _category = category;
 }