Exemple #1
0
 public MecMakineEkle(Yetkili _yetkili, MecMakine makine)
 {
     InitializeComponent();
     Temp             = makine;
     mecOperation     = new BLLMecOperation();
     musteriOperation = new BLLMusteriOperation();
     yetkili          = _yetkili;
     this.Text        = "MEÇ MAKİNE GÜNCELLE";
 }
 public SevkMakineler(Yetkili yetkili_)
 {
     InitializeComponent();
     mecOperation            = new BLLMecOperation();
     otomatikYikamaOperation = new BLLOtomatikYikamaOperation();
     paketlemeOperation      = new BLLPaketlemeOperation();
     sikmaOperation          = new BLLSikmaOperation();
     cırpmaOperation         = new BLLCırpmaOperation();
     yetkili = yetkili_;
 }
Exemple #3
0
 public MecMakineEkle(Yetkili _yetkili, Musteri _musteri = null)
 {
     InitializeComponent();
     mecOperation     = new BLLMecOperation();
     musteriOperation = new BLLMusteriOperation();
     yetkili          = _yetkili;
     musteri          = _musteri;
     this.Text        = "MEÇ MAKİNE EKLE";
     btn_sil.Visible  = false;
 }
 public Makineler(Musteri musteri_)
 {
     InitializeComponent();
     musteri                 = musteri_;
     mecOperation            = new BLLMecOperation();
     otomatikYikamaOperation = new BLLOtomatikYikamaOperation();
     paketlemeOperation      = new BLLPaketlemeOperation();
     sikmaOperation          = new BLLSikmaOperation();
     cırpmaOperation         = new BLLCırpmaOperation();
 }