public TozCırpmaEkle(Yetkili yetkili_, TozCırpmaMakine makine)
 {
     InitializeComponent();
     Temp             = makine;
     cırpmaOperation  = new BLLCırpmaOperation();
     yetkili          = yetkili_;
     musteriOperation = new BLLMusteriOperation();
     this.Text        = "ÇIRPMA MAKİNE GÜNCELLE";
 }
Exemplo n.º 2
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_;
 }
 public TozCırpmaEkle(Yetkili yetkili_, Musteri _musteri = null)
 {
     InitializeComponent();
     cırpmaOperation  = new BLLCırpmaOperation();
     yetkili          = yetkili_;
     musteriOperation = new BLLMusteriOperation();
     musteri          = _musteri;
     this.Text        = "ÇIRPMA MAKİNE EKLE";
     btn_sil.Visible  = false;
 }
Exemplo n.º 4
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();
 }