private void btnSearch_Click(object sender, EventArgs e)
 {
     WareHouseRepository whRepository = new WareHouseRepository();
     int clinicId = 0;
     if (cboClinic.SelectedValue != null)
         int.TryParse(cboClinic.SelectedValue.ToString(), out clinicId);
     grd.DataSource = whRepository.GetInventory(clinicId, dpkFromDate.Value.Date, dpkToDate.Value.Date);
 }