public frmDoktorRecete(Hasta hasta, Doktor doktor)
 {
     InitializeComponent();
     _ilacBLL              = new IlacBLL();
     _receteBLL            = new ReceteBLL();
     _gununTarihiBLL       = new GununTarihiBLL();
     _hasta                = hasta;
     _doktor               = doktor;
     _eklenenIlacBilgileri = new List <ReceteDetay>();
 }
示例#2
0
        public frmDoktor(Doktor doktor)
        {
            InitializeComponent();

            _doktor         = doktor;
            hasta           = new Hasta();
            _seans          = new Seans();
            _randevuBLL     = new RandevuBLL();
            _seansBLL       = new SeansBLL();
            _hastaBLL       = new HastaBLL();
            randevular      = new List <Randevu>();
            _rsDTO          = new RandevuSeansDTO();
            _gununTarihiBLL = new GununTarihiBLL();
        }
示例#3
0
 public frmRandevu(Hasta _hasta)
 {
     InitializeComponent();
     _hastaneBLL     = new HastaneBLL();
     hdDTO           = new List <HastaneDepDTO>();
     _depBLL         = new DepartmanBLL();
     _dokBLL         = new DoktorBLL();
     _seansBLL       = new SeansBLL();
     _hastaBLL       = new HastaBLL();
     _randevuBLL     = new RandevuBLL();
     _gununTarihiBLL = new GununTarihiBLL();
     hasta           = new Hasta();
     hasta           = _hasta;
     hastaneler      = _hastaneBLL.GetHastaneler();
     departmanlar    = _depBLL.GetDepartmanlar();
 }