コード例 #1
0
 public SevkMakineler(Yetkili yetkili_)
 {
     InitializeComponent();
     mecOperation            = new BLLMecOperation();
     otomatikYikamaOperation = new BLLOtomatikYikamaOperation();
     paketlemeOperation      = new BLLPaketlemeOperation();
     sikmaOperation          = new BLLSikmaOperation();
     cırpmaOperation         = new BLLCırpmaOperation();
     yetkili = yetkili_;
 }
コード例 #2
0
 public Makineler(Musteri musteri_)
 {
     InitializeComponent();
     musteri                 = musteri_;
     mecOperation            = new BLLMecOperation();
     otomatikYikamaOperation = new BLLOtomatikYikamaOperation();
     paketlemeOperation      = new BLLPaketlemeOperation();
     sikmaOperation          = new BLLSikmaOperation();
     cırpmaOperation         = new BLLCırpmaOperation();
 }
コード例 #3
0
 public SikmaEkle(Yetkili yetkili_, Musteri musteri_ = null)
 {
     InitializeComponent();
     sikmaOperation   = new BLLSikmaOperation();
     musteriOperation = new BLLMusteriOperation();
     yetkili          = yetkili_;
     musteri          = musteri_;
     this.Text        = "SIKMA MAKİNE EKLE";
     btn_sil.Visible  = false;
 }
コード例 #4
0
 public SikmaEkle(Yetkili yetkili_, SikmaMakine makine)
 {
     InitializeComponent();
     Temp             = makine;
     sikmaOperation   = new BLLSikmaOperation();
     musteriOperation = new BLLMusteriOperation();
     yetkili          = yetkili_;
     this.Text        = "SIKMA MAKİNE GÜNCELLE";
     doldur();
     cmb_musteriAdi.Enabled = false;
 }